reagent/prepare-tests.sh

9 lines
95 B
Bash
Executable File

#!/bin/bash
for env in test-environments/*; do
(
cd "$env"
npm install
)
done