Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b652e1a

Browse files
committed
fix
1 parent 9ada0a9 commit b652e1a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

all_test.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ find . -name all_test.sh > "$TESTS"
55

66
while read -r TEST; do
77
DIR=$(dirname "$TEST")
8-
echo "\n\n==> $DIR <==\n\n"
9-
cd "$DIR"
10-
./all_test.sh
8+
echo -e "\n\n==> $DIR <==\n\n"
9+
(cd "$DIR" && ./all_test.sh)
1110
done < "$TESTS"
1211

1312
rm "$TESTS"

0 commit comments

Comments
 (0)