diff options
| author | mo8it <mo8it@proton.me> | 2024-03-27 15:00:57 +0100 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-03-27 15:00:57 +0100 |
| commit | a27741b131a434a2af5884eb9690b2200a3f21e7 (patch) | |
| tree | 61ced2dab1431e8cc7218cf9fb8e5f0abfa31a80 /src/run.rs | |
| parent | 078f6ffc1cf18546079d03bee99f0903c9e14703 (diff) | |
| parent | b13bafa13e461f1a2f1f0b56adfb03e0519a8517 (diff) | |
Merge branch 'main' into performance
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(); |
