mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-11 04:48:00 +03:00
12 lines
235 B
Bash
Executable File
12 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
cd ../npm
|
|
|
|
for i in $(find . -type d -maxdepth 1) ; do
|
|
packageJson="${i}/package.json"
|
|
if [ -f "${packageJson}" ]; then
|
|
echo "installing ${i}..."
|
|
cd ./${i}
|
|
npm install
|
|
cd ..
|
|
fi
|
|
done |