1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-22 09:15:54 +00:00
Nuxt/scripts/workspace-run

11 lines
105 B
Plaintext
Raw Normal View History

#!/bin/bash
set -e
for dir in packages/* distributions/* ; do
echo "$dir"
pushd $dir
$@
popd
done