mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
14 lines
188 B
Bash
Executable File
14 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
for dir in packages/* distributions/* ; do
|
|
# echo "$dir"
|
|
if [[ $dir == *"node_modules"* ]]; then
|
|
continue
|
|
fi
|
|
pushd $dir > /dev/null
|
|
$@
|
|
popd > /dev/null
|
|
done
|
|
|