1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00

change ensureDir to mkdir -p in example

ensureDir was dropped with the merge of https://github.com/NixOS/nixpkgs/pull/33637
This commit is contained in:
Markus Wamser 2020-05-01 22:04:09 +02:00 committed by Jon
parent ab70c4d058
commit b3454597da

View file

@ -3,7 +3,7 @@ fixupPhase() {
## Elided
if test -n "$propagatedBuildInputs"; then
ensureDir "$out/nix-support"
mkdir -p "$out/nix-support"
echo "$propagatedBuildInputs" > "$out/nix-support/propagated-build-inputs"
fi