Skip to content

Commit

Permalink
Fix justfile env shebang on Linux (#1330)
Browse files Browse the repository at this point in the history
Add `-S` to the env invocation in the main justfile's shebang, which is
required on Linux.
  • Loading branch information
casey committed Sep 4, 2022
1 parent c2cb80e commit 3135db5
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
@@ -1,4 +1,4 @@
#!/usr/bin/env just --justfile
#!/usr/bin/env -S just --justfile
# ^ A shebang isn't required, but allows a justfile to be executed
# like a script, with `./justfile test`, for example.

Expand Down

0 comments on commit 3135db5

Please sign in to comment.