Fix bench scripts

This commit is contained in:
Wilson Lin 2021-08-09 23:19:37 +10:00
parent 95c792cebf
commit b047dc79c4
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ pushd runners >/dev/null
npm i
for r in *; do
if [ ! -d "$r" ]; then
if [[ ! -d "$r" ]] || [[ "$r" == "node_modules" ]]; then
continue
fi
echo "Building $r..."

View File

@ -18,7 +18,7 @@ mkdir -p "$results_dir"
pushd runners >/dev/null
for r in *; do
if [ ! -d "$r" ]; then
if [[ ! -d "$r" ]] || [[ "$r" == "node_modules" ]]; then
continue
fi
echo "Running $r..."