We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ada0a9 commit b652e1aCopy full SHA for b652e1a
1 file changed
all_test.sh
@@ -5,9 +5,8 @@ find . -name all_test.sh > "$TESTS"
5
6
while read -r TEST; do
7
DIR=$(dirname "$TEST")
8
- echo "\n\n==> $DIR <==\n\n"
9
- cd "$DIR"
10
- ./all_test.sh
+ echo -e "\n\n==> $DIR <==\n\n"
+ (cd "$DIR" && ./all_test.sh)
11
done < "$TESTS"
12
13
rm "$TESTS"
0 commit comments