Merge pull request #54094 from rnhmjoj/shell

treewide: use ${stdenv.shell} instead of /bin/sh where possible
This commit is contained in:
Frederik Rietdijk
2019-01-19 14:15:51 +01:00
committed by GitHub
92 changed files with 156 additions and 120 deletions
@@ -10,6 +10,7 @@ stdenv.mkDerivation rec {
script = substituteAll {
src = ./rpmextract.sh;
inherit rpm cpio;
inherit (stdenv) shell;
};
meta = with stdenv.lib; {
@@ -1,4 +1,4 @@
#!/bin/sh -e
#!@shell@ -e
if [ "$1" = "" ]; then
echo "usage: rpmextract package_name..." 1>&2