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).
❄️
This commit is contained in:
parent
6e4fd87002
commit
5864245d89
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
# Instead of doing just `cargo run --manifest-path .. $@`, we invoke miri-script binary directly. Invoking `cargo run` goes through
|
||||
# rustup (that sets it's own environmental variables), which is undesirable.
|
||||
|
Loading…
Reference in New Issue
Block a user