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