dockerTools: use list of strings for configureFlags
This commit is contained in:
parent
e2659eea36
commit
0c98db7b91
1 changed files with 1 additions and 1 deletions
|
@ -588,7 +588,7 @@ rec {
|
|||
chown 1000 ./home/jane
|
||||
ln -s ${pkgs.hello.overrideAttrs (o: {
|
||||
# A unique `hello` to make sure that it isn't included via another mechanism by accident.
|
||||
configureFlags = o.configureFlags or "" + " --program-prefix=layeredImageWithFakeRootCommands-";
|
||||
configureFlags = o.configureFlags or [] ++ [ " --program-prefix=layeredImageWithFakeRootCommands-" ];
|
||||
doCheck = false;
|
||||
})} ./hello
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue