Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheecour committed May 29, 2021
1 parent 0c4768c commit 22e210c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/nimdigger.nim
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ proc parseKeyVal(a: string): OrderedTable[string, string] =
result[b[0]] = b[1]

# xxx move some of these to std/private/gitutils.nim
proc gitClone(url: string, dir: string) = runCmd fmt"git clone -q {url} {dir.quoteShell}"
proc gitClone(url: string, dir: string) = runCmd fmt"git clone -q {url.quoteShell} {dir.quoteShell}"
proc gitResetHard(dir: string, rev: string) = runCmd fmt"git -C {dir.quoteShell} reset --hard {rev}"
proc gitCleanDanger(dir: string, requireConfirmation = true) =
#[
Expand Down

0 comments on commit 22e210c

Please sign in to comment.