diff options
author | John Axel Eriksson <john@insane.se> | 2022-01-15 14:11:37 +0100 |
---|---|---|
committer | John Axel Eriksson <john@insane.se> | 2022-01-15 14:11:37 +0100 |
commit | 84507daaaa476e9ee4fbf87d1728a07ad6520ca0 (patch) | |
tree | 0626e7356b45daa88ef420dbb63a9d26366e631e /docker.nix | |
parent | 3fff0196cdf0859ee16c719fdc51084a414c8a4d (diff) |
docker: var/tmp make add -p option to mkdir to also create parent dirs
Diffstat (limited to 'docker.nix')
-rw-r--r-- | docker.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker.nix b/docker.nix index 0e29d0e0b..251bd2f46 100644 --- a/docker.nix +++ b/docker.nix @@ -201,7 +201,7 @@ let mkdir $out/tmp - mkdir $out/var/tmp + mkdir -p $out/var/tmp mkdir -p $out/etc/nix cat $nixConfContentsPath > $out/etc/nix/nix.conf |