mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
9 lines
150 B
Rust
9 lines
150 B
Rust
use std::error::Error;
|
|
|
|
use vergen::EmitBuilder;
|
|
|
|
fn main() -> Result<(), Box<dyn Error>> {
|
|
EmitBuilder::builder().git_sha(true).emit()?;
|
|
|
|
Ok(())
|
|
}
|