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
This commit is contained in:
Michał Gołębiowski-Owczarek 2019-10-05 18:48:27 +02:00 committed by GitHub
parent 9a4d980639
commit d7d0b52bda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,7 +130,8 @@ module.exports = function( Release, files, complete ) {
Release.chdir( Release.dir.dist ); Release.chdir( Release.dir.dist );
console.log( "Pushing release to dist repo..." ); console.log( "Pushing release to dist repo..." );
Release.exec( "git push " + distRemote + " master --tags", Release.exec( "git push " + ( Release.isTest ? " --dry-run " : "" ) +
distRemote + " master --tags",
"Error pushing master and tags to git repo." ); "Error pushing master and tags to git repo." );
// Set repo for npm publish // Set repo for npm publish