Skip to content

Commit 22e210c

Browse files
committed
fixup
1 parent 0c4768c commit 22e210c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/nimdigger.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ proc parseKeyVal(a: string): OrderedTable[string, string] =
150150
result[b[0]] = b[1]
151151

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

0 commit comments

Comments
 (0)