mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
8 lines
221 B
Bash
8 lines
221 B
Bash
|
|
|
|
for d in */ ; do
|
|
cd $d || echo "Cannot cd into $d"
|
|
rm -rf node_modules || echo "node_modules directory not found $d"
|
|
npm install --force || echo "Cannot npm install $d"
|
|
cd .. || echo "Cannot cd out"
|
|
done |