We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce42b9a commit af6cb9bCopy full SHA for af6cb9b
1 file changed
scripts/ci/test-shared-libs.sh
@@ -29,7 +29,7 @@ for lib in "$LIBS_DIR"/*/; do
29
npm test --prefix "$lib" --if-present
30
31
exit_status=$?
32
- if [ $exit_status -ne 0 ]; then
+ if [[ $exit_status -ne 0 ]]; then
33
echo "Workspace '$lib_name' FAILED."
34
FAILED_LIBS="$FAILED_LIBS - $LIBS_DIR/$lib_name\n"
35
FAIL_COUNT=$((FAIL_COUNT + 1))
0 commit comments