Merge pull request #58350 from xtruder/pkgs/dockerTools/storePathToLayer/runtimeShell

dockerTools: storePathToLayer use runtimeShell in script
This commit is contained in:
lewo 2019-04-06 19:01:19 +02:00 committed by GitHub
commit a8beff987d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -289,7 +289,7 @@ rec {
}:
let
storePathToLayer = substituteAll
{ inherit (stdenv) shell;
{ shell = runtimeShell;
isExecutable = true;
src = ./store-path-to-layer.sh;
};

View file

@ -1,4 +1,4 @@
#!/bin/sh
#! @shell@
set -eu