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