We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5590eff commit c378aa6Copy full SHA for c378aa6
src/bin/sile.rs
@@ -29,6 +29,7 @@ type Result<T, E = Error> = std::result::Result<T, E>;
29
fn main() -> Result<()> {
30
let version = option_env!("VERGEN_GIT_DESCRIBE").unwrap_or_else(|| env!("CARGO_PKG_VERSION"));
31
let version = version.replacen('-', ".r", 1);
32
+ // TODO: figure out how to compose and embed this without running SILE twice
33
let long_version = sile::version()
34
.context(VersionSnafu)?
35
.strip_prefix("SILE ")
0 commit comments