Skip to content

Commit

Permalink
Quote {{ it }} in justfile to fix recipe in Windows
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
EliahKagan committed Nov 29, 2024
1 parent 2107e17 commit 3f5d31b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ find-yanked:
# Find shell scripts whose +x/-x bits and magic bytes (e.g. `#!`) disagree
check-mode:
cargo build -p internal-tools
{{ it }} check-mode
"{{ it }}" check-mode

# Delete gix-packetline-blocking/src and regenerate from gix-packetline/src
copy-packetline:
Expand Down

0 comments on commit 3f5d31b

Please sign in to comment.