File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 22 "presets" : [
33 [" env" , {
44 "targets" : {
5- "node" : " current "
5+ "node" : " 6 "
66 }
77 }]
88 ]
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export default program =>
66 . description ( 'Go to the end of an exercise' )
77 . action ( async ( exercise , options ) => {
88 console . log ( 'Stashing changes...' )
9- await exec ( `git stash save "end exercise ${ exercise } " ` )
9+ await exec ( `git stash -u ` )
1010 console . log ( `Going to the end of exercise ${ exercise } ` )
1111 await exec ( `git checkout end-exercise-${ exercise } ` )
1212 console . log ( `Installing dependencies...` )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export default program =>
66 . description ( 'Go to the beginning of an exercise' )
77 . action ( async ( exercise , options ) => {
88 console . log ( 'Stashing changes...' )
9- await exec ( `git stash save "start exercise ${ exercise } " ` )
9+ await exec ( `git stash -u ` )
1010 console . log ( `Going to the start of exercise ${ exercise } ` )
1111 await exec ( `git checkout start-exercise-${ exercise } ` )
1212 console . log ( `Installing dependencies...` )
You can’t perform that action at this time.
0 commit comments