Skip to content

Commit f9ce2d0

Browse files
committed
Auto merge of #3056 - Nilstrieb:patch-1, r=RalfJung
Use `#!/usr/bin/env` shebang ``` $ ls /bin/bash ls: cannot access '/bin/bash': No such file or directory ``` On certain systems, `/bin` and `/usr/bin` are nothing but wastelands, with just `env`around as the last survivor of the great purge. The binaries have cowardly hidden away and only `env` can show us the way to greatness (bash). ❄️
2 parents aae7597 + 0131586 commit f9ce2d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

miri

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
set -e
33
# Instead of doing just `cargo run --manifest-path .. $@`, we invoke miri-script binary directly. Invoking `cargo run` goes through
44
# rustup (that sets it's own environmental variables), which is undesirable.

0 commit comments

Comments
 (0)