Skip to content

Commit 94cee64

Browse files
committed
chore(*): fix script
1 parent 74272d3 commit 94cee64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/artifact_tagging.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let _exec = util._exec;
1212

1313
cd(path.join(__dirname, '..'));
1414

15-
if (!readlineSync.keyInYN('Ready to publish to ' + version + '-artifacts branch?')) {
15+
if (!readlineSync.keyInYN('Ready to publish to ' + version + '-artifacts tag?')) {
1616
process.exit(1);
1717
}
1818

@@ -22,7 +22,7 @@ _exec('npm run package');
2222

2323
// then tag and push tag
2424
_exec(`git checkout -b ${version}-artifacts-prep`);
25-
_exec(`git add —force lib lib-esm bundles`);
25+
_exec(`git add —-force lib lib-esm bundles`);
2626
_exec(`git commit -m 'chore(*): commiting build files'`);
2727
_exec(`git tag ${version}-artifacts`);
2828
_exec(`git push -u origin ${version}-artifacts`);

0 commit comments

Comments
 (0)