mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-17 19:25:13 +00:00
10 lines
98 B
Plaintext
10 lines
98 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
for dir in packages/* distributions/* ; do
|
||
|
echo "$dir"
|
||
|
pushd $dir
|
||
|
$@
|
||
|
popd
|
||
|
done
|
||
|
|