Skip to content

Commit

Permalink
Build: Fix lines that are now too long
Browse files Browse the repository at this point in the history
  • Loading branch information
dmethvin committed May 20, 2016
1 parent adb28e4 commit 8446695
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions build/release.js
Expand Up @@ -136,9 +136,11 @@ function checkGitStatus( next ) {
}

function tagReleaseVersion( next ) {
git( [ "commit", "-a", "--no-verify", "-m", "Tagging the " + releaseVersion + " release." ], function() {
git( [ "tag", releaseVersion ], next );
} );
git( [ "commit", "-a", "--no-verify", "-m", "Tagging the " + releaseVersion + " release." ],
function() {
git( [ "tag", releaseVersion ], next );
}
);
}

function updateVersions( next ) {
Expand Down Expand Up @@ -183,7 +185,8 @@ function publishToNPM( next ) {
function setNextVersion( next ) {
updateSourceVersion( nextVersion );
updatePackageVersion( nextVersion, "master" );
git( [ "commit", "-a", "--no-verify", "-m", "Updating the source version to " + nextVersion ], next );
git( [ "commit", "-a", "--no-verify", "-m", "Updating the source version to " + nextVersion ],
next );
}

function pushToRemote( next ) {
Expand Down

0 comments on commit 8446695

Please sign in to comment.