Skip to content

Commit 2b0a627

Browse files
gseguinscottgonzalez
authored andcommitted
Repo: Cleanup
1 parent dad5e94 commit 2b0a627

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/repo.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Release.define({
143143
_createTag: function( paths ) {
144144

145145
// Ensure that at least one file is in the array so that `git add` won't error
146-
paths.concat( "package.json" );
146+
paths = paths.concat( "package.json" );
147147

148148
console.log( "Committing release artifacts..." );
149149
Release.git( "add " + paths.join( " " ), "Error adding release artifacts to git." );
@@ -162,8 +162,8 @@ Release.define({
162162
},
163163

164164
_pushRelease: function() {
165-
console.log( "Pushing release to GitHub..." );
166-
Release.git( "push --tags", "Error pushing tags to GitHub." );
165+
console.log( "Pushing release to git repo..." );
166+
Release.git( "push --tags", "Error pushing tags to git repo." );
167167
},
168168

169169
_updateBranchVersion: function() {

0 commit comments

Comments
 (0)