diff options
Diffstat (limited to 'src/run.rs')
| -rw-r--r-- | src/run.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -21,7 +21,8 @@ pub fn run(exercise: &Exercise, verbose: bool) -> Result<(), ()> { // Resets the exercise by stashing the changes. pub fn reset(exercise: &Exercise) -> Result<(), ()> { let command = Command::new("git") - .args(["stash", "--"]) + .arg("stash") + .arg("--") .arg(&exercise.path) .spawn(); |
