Skip to content

Commit 3f5d31b

Browse files
committed
Quote {{ it }} in justfile to fix recipe in Windows
Since Windows was failing due to the shell called by `just` treating `\` path separators as escape characters (the main effect of which was that they were removed in quote removal). This was not a problem for internal-tools, but it broke the `just` recipe at least in some ways of running it on Windows, including CI and at least one local system tested.
1 parent 2107e17 commit 3f5d31b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

justfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ find-yanked:
259259
# Find shell scripts whose +x/-x bits and magic bytes (e.g. `#!`) disagree
260260
check-mode:
261261
cargo build -p internal-tools
262-
{{ it }} check-mode
262+
"{{ it }}" check-mode
263263

264264
# Delete gix-packetline-blocking/src and regenerate from gix-packetline/src
265265
copy-packetline:

0 commit comments

Comments
 (0)