We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c0433 commit 9b29d6fCopy full SHA for 9b29d6f
test-e2e.sh
@@ -8,7 +8,7 @@ echo "Installing local bundle from TAR in NodeJS project"
8
yarn add ../../../imagekit*.tgz
9
node index.js;test_result=$?
10
echo $test_result
11
-if [[ "$test_result" != "0" ]]; then
+if (("$test_result" != "0")); then
12
printf '%s\n' "Final bundle not working in NodeJS project" >&2
13
exit 1
14
fi
@@ -22,7 +22,7 @@ echo "Installing local bundle from TAR in Typescript project"
22
23
npx tsc && node index.js;test_result=$?
24
25
26
printf '%s\n' "Final bundle not working in Typescript project" >&2
27
28
0 commit comments