Skip to content

Commit

Permalink
devops: fix driver publish
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Feb 10, 2021
1 parent 2e01fbd commit e2013b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/build/update_canary_version.js
Expand Up @@ -26,7 +26,7 @@ if (process.argv[2] === '--today-date') {
const day = date.getDate();
const year = date.getFullYear();
packageJSON.version = `${packageJSON.version}-alpha-${month}-${day}-${year}`;
} else if (prcess.argv[2] === '--commit-timestamp') {
} else if (process.argv[2] === '--commit-timestamp') {
const timestamp = execSync('git show -s --format=%ct HEAD', {
stdio: ['ignore', 'pipe', 'ignore']
}).toString('utf8').trim();
Expand Down

0 comments on commit e2013b2

Please sign in to comment.