Remove the -L from the cp statements, since it is erroring on OSX.

This commit is contained in:
Elliot Glaysher 2019-04-12 10:27:35 -07:00
parent 785839db5c
commit f388526fdb
3 changed files with 3 additions and 3 deletions

View File

@ -17,5 +17,5 @@ fi
pkg=$(nix-build nix/ops -A bootbus --no-out-link)
mkdir -p "$(dirname "$target")"
cp -L -r $pkg/ $target
cp -r $pkg/ $target
chmod -R u+rw $target

View File

@ -17,5 +17,5 @@ fi
pkg=$(nix-build nix/ops -A bootzod --no-out-link)
mkdir -p "$(dirname "$target")"
cp -L -r $pkg/ $target
cp -r $pkg/ $target
chmod -R u+rw $target

View File

@ -17,5 +17,5 @@ fi
pkg=$(nix-build nix/ops -A fakezod --no-out-link)
mkdir -p "$(dirname "$target")"
cp -L -r $pkg/ $target
cp -r $pkg/ $target
chmod -R u+rw $target