Skip to content

Commit 5433553

Browse files
committed
Fix 8589: by appending "-1.0" pre-release version will be comparising by lexically comparison in ASCII sort order. (#8629)
1 parent dc900de commit 5433553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/configureNightly.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function getNightlyVersionString(versionString: string): string {
6767
const now = new Date();
6868
const timeStr = now.toISOString().replace(/:|T|\.|-/g, "").slice(0, 8);
6969

70-
return `${versionString}-dev.${timeStr}`;
70+
return `${versionString}-dev.${timeStr}-1.0`;
7171
}
7272

7373
main();

0 commit comments

Comments
 (0)