Skip to content

Commit bcb3ac7

Browse files
committed
try
1 parent 9b29d6f commit bcb3ac7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-e2e.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ echo "Installing local bundle from TAR in NodeJS project"
88
yarn add ../../../imagekit*.tgz
99
node index.js;test_result=$?
1010
echo $test_result
11-
if (("$test_result" != "0")); then
11+
if [ "$test_result" != "0" ]; then
1212
printf '%s\n' "Final bundle not working in NodeJS project" >&2
1313
exit 1
1414
fi
@@ -22,7 +22,7 @@ echo "Installing local bundle from TAR in Typescript project"
2222
yarn add ../../../imagekit*.tgz
2323
npx tsc && node index.js;test_result=$?
2424
echo $test_result
25-
if (("$test_result" != "0")); then
25+
if [ "$test_result" != "0" ]; then
2626
printf '%s\n' "Final bundle not working in Typescript project" >&2
2727
exit 1
2828
fi

0 commit comments

Comments
 (0)