Skip to content

Commit

Permalink
0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IbrahimTanyalcin committed Aug 20, 2021
1 parent ee664ec commit 3b56244
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"gitTag": "cross-env-shell node ./util/gitTag.js",
"gitAddAll": "git add -A",
"gitPush": "git push",
"gitPushTags": "git push --tags",
"gitPushTags": "git push --tags --force",
"setGit": "npm run gitAddAll && npm run gitCommit && npm run gitTag && npm run gitPush && npm run gitPushTags",
"publishRest": "npm run setGit && npm publish",
"publishPatch": "npm run bumpPatch && npm run publishRest",
Expand Down
4 changes: 2 additions & 2 deletions util/gitTag.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
});
return retVal;
};
execute('cross-env-shell git tag NPM_' + NPM_VERSION)
execute('cross-env-shell git tag -f NPM_' + NPM_VERSION)
.then(function(res){
return execute('cross-env-shell git tag IPV_' + pckjson.org_ipv.version);
return execute('cross-env-shell git tag -f IPV_' + pckjson.org_ipv.version);
})
.catch(function(reason){console.log('Promise thrown or rejected. Reason:\n' + reason)});
}();

0 comments on commit 3b56244

Please sign in to comment.