Fix justfile env shebang on Linux (#1330)

Add `-S` to the env invocation in the main justfile's shebang, which is
required on Linux.
This commit is contained in:
Casey Rodarmor 2022-09-03 21:18:53 -07:00 committed by GitHub
parent c2cb80e794
commit 3135db5e51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.