mirror of
https://github.com/biomejs/biome.git
synced 2025-12-23 08:21:13 +00:00
12 lines
151 B
Bash
Executable file
12 lines
151 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
for x in *; do
|
|
if test -d "$x"; then
|
|
echo "Testing $x..."
|
|
cd "$x"
|
|
sh test.sh
|
|
cd ..
|
|
fi
|
|
done
|