Skip to content
Permalink
Browse files Browse the repository at this point in the history
Fix Remote Command Execution
  • Loading branch information
hbkhan committed Jun 23, 2020
1 parent a9ddbc2 commit b7a8b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/git.js
Expand Up @@ -61,7 +61,7 @@ module.exports.commit = function (files, message, newVer, tagName, callback) {

function (done) {
cp.exec(
[gitApp, "tag", "-a", tagName, "-m", message].join(" "),
[gitApp, "tag", "-a", escapeQuotes(tagName), "-m", message].join(" "),
gitExtra,
done
);
Expand Down

0 comments on commit b7a8b32

Please sign in to comment.