mirror of
https://github.com/urbit/shrub.git
synced 2024-11-28 13:54:20 +03:00
edd57d380d
- Fixes the IPC bug - Fixes the terminfo bug - Moves the OSX SDK out of our nixcrpkgs fork. - Vendor nixcrpkgs instead of having it be a submodule.
9 lines
136 B
Bash
9 lines
136 B
Bash
source $setup
|
|
names=($names)
|
|
dirs=($dirs)
|
|
mkdir $out
|
|
cd $out
|
|
for ((i=0;i<${#names[@]};i++)); do
|
|
ln -s "${dirs[i]}" "${names[i]}"
|
|
done
|