mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
11 lines
216 B
Bash
11 lines
216 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
for path in $paths; do
|
||
|
if ! [ -e "$src/$path" ]; then
|
||
|
echo "Error: $path does not exist"
|
||
|
exit 1
|
||
|
fi
|
||
|
mkdir -p $out/$(dirname $path)
|
||
|
ln -s $src/$path $out/$path
|
||
|
done
|