Skip to content

Commit d7d0b52

Browse files
authored
Build: Support jquery-release --dry-run flag
Without this change passing `--dry-run` to jquery-release still pushes to the jquery-dist repository which is dangerous as one can assume `--dry-run` to be safe from external side effects. Close gh-4498
1 parent 9a4d980 commit d7d0b52

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build/release/dist.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ module.exports = function( Release, files, complete ) {
130130
Release.chdir( Release.dir.dist );
131131

132132
console.log( "Pushing release to dist repo..." );
133-
Release.exec( "git push " + distRemote + " master --tags",
133+
Release.exec( "git push " + ( Release.isTest ? " --dry-run " : "" ) +
134+
distRemote + " master --tags",
134135
"Error pushing master and tags to git repo." );
135136

136137
// Set repo for npm publish

0 commit comments

Comments
 (0)