File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ function getVersion(): string {
2929 return readFileSync ( SERVER_VERSION_FILE_PATH , "utf-8" ) ;
3030 }
3131
32- const serverVersion = `${ getDateVersion ( ) } . ${ COMMIT_HASH } ` ;
32+ const serverVersion = `${ getDateVersion ( ) } _ ${ COMMIT_HASH } ` ;
3333 writeFileSync ( SERVER_VERSION_FILE_PATH , serverVersion ) ;
3434
3535 return serverVersion ;
Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ function buildClientVersion() {
3434 . execSync ( "git rev-parse --short HEAD" )
3535 . toString ( ) ;
3636
37- return `${ version } . ${ commitHash } ` . replace ( / \n / g, "" ) ;
37+ return `${ version } _ ${ commitHash } ` . replace ( / \n / g, "" ) ;
3838 } catch ( e ) {
39- return `${ version } .unknown -hash` ;
39+ return `${ version } _unknown -hash` ;
4040 }
4141}
4242
You can’t perform that action at this time.
0 commit comments