1

replace /usr/bin/env sh with /bin/sh

/bin/sh exists in NixOS and in fact is the only file in `/bin`:

    $ docker run -ti --rm nixos/nix ls /bin /usr/bin
    /bin:
    sh

    /usr/bin:
    env

More context in
https://lists.sr.ht/~motiejus/bazel-zig-cc/%3CCAFVMu-pvNx%2BpeQYdge_fvmSGrHDmn78VmoYwTxkDgMjbzfVAwQ%40mail.gmail.com%3E
This commit is contained in:
Motiejus Jakštys
2022-08-30 09:19:56 +03:00
parent 342b239bb9
commit 79674a1d96
4 changed files with 7 additions and 9 deletions

View File

@@ -1,6 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail
#!/bin/sh
set -eu
# shellcheck disable=SC2153
want=$WANT