File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ( ) {
You can’t perform that action at this time.
0 commit comments