Remove zeros from build number

The zeros were kept in place of the timestamp in case people were
parsing it. Let's try to remove the zeros now and see what breaks.

Test: Presubmits
Change-Id: Ic52168f6be05a74323d8e47935de5c6a5cf15516
This commit is contained in:
Cole Faust 2024-09-09 16:54:16 -07:00 committed by Bartłomiej Rudecki
parent 3dccccee5e
commit 4c819d9401
Signed by: przekichane
GPG key ID: 751F23C6F014EF76

View file

@ -79,7 +79,7 @@ func SetupOutDir(ctx Context, config Config) {
if username, ok = config.environ.Get("BUILD_USERNAME"); !ok {
ctx.Fatalln("Missing BUILD_USERNAME")
}
buildNumber = fmt.Sprintf("eng.%.6s.00000000.000000", username)
buildNumber = fmt.Sprintf("eng.%.6s", username)
writeValueIfChanged(ctx, config, config.OutDir(), "file_name_tag.txt", username)
}
// Write the build number to a file so it can be read back in