diff --git a/scripts/workspace-run b/scripts/workspace-run index 1e65e459f27e..53fcbe9b0c98 100755 --- a/scripts/workspace-run +++ b/scripts/workspace-run @@ -3,6 +3,9 @@ set -e for dir in packages/* distributions/* ; do # echo "$dir" + if [[ $dir == *"node_modules"* ]]; then + continue + fi pushd $dir > /dev/null $@ popd > /dev/null