1 Star 0 Fork 0

studyzy/ord

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.rs 667 Bytes
一键复制 编辑 原始数据 按行查看 历史
Casey Rodarmor 提交于 2023-12-08 18:01 . Add /status page (#2819)
use std::{process::Command, str};
fn git_branch() -> Option<String> {
str::from_utf8(
&Command::new("git")
.args(["rev-parse", "--abbrev-ref", "HEAD"])
.output()
.ok()?
.stdout,
)
.ok()
.map(|branch| branch.into())
}
fn git_commit() -> Option<String> {
str::from_utf8(
&Command::new("git")
.args(["rev-parse", "--verify", "HEAD"])
.output()
.ok()?
.stdout,
)
.ok()
.map(|branch| branch.into())
}
fn main() {
println!(
"cargo:rustc-env=GIT_BRANCH={}",
git_branch().unwrap_or_default()
);
println!(
"cargo:rustc-env=GIT_COMMIT={}",
git_commit().unwrap_or_default()
);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/studyzy/ord.git
git@gitee.com:studyzy/ord.git
studyzy
ord
ord
master

搜索帮助