Skip to content

Commit

Permalink
Don't set a default VERS
Browse files Browse the repository at this point in the history
The default caboose version is currently `0.0.0-git`. This is a mostly
meaningless placeholder. Remove it so we have no version to access
until we have properly signed and versioned a build.
  • Loading branch information
labbott committed Mar 27, 2024
1 parent 1145c39 commit 8c42218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/xtask/src/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ pub fn package(
// The Git hash is included in the default caboose under the key
// `GITC`, so we don't include it in the pseudo-version.
archive
.write_default_caboose(Some(&"0.0.0-git".to_owned()))
.write_default_caboose(None)
.context("writing caboose into archive")?;
archive.overwrite().context("overwriting archive")?;
}
Expand Down

0 comments on commit 8c42218

Please sign in to comment.