From 3135db5e517efce7291509b92d23edf701ff9c5f Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sat, 3 Sep 2022 21:18:53 -0700 Subject: [PATCH] Fix justfile env shebang on Linux (#1330) Add `-S` to the env invocation in the main justfile's shebang, which is required on Linux. --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index c9c6708..17318d7 100755 --- a/justfile +++ b/justfile @@ -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.