mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
11 lines
105 B
Bash
Executable File
11 lines
105 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
for dir in packages/* distributions/* ; do
|
|
echo "$dir"
|
|
pushd $dir
|
|
$@
|
|
popd
|
|
done
|
|
|