Skip to content

Commit 0d9d8be

Browse files
committed
try
1 parent 04aac2d commit 0d9d8be

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test-e2e.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ yarn init --yes
66
echo "Installing local bundle from TAR in NodeJS project"
77
yarn add ../../../imagekit*.tgz
88
node index.js;test_result=$?
9-
echo test_result
10-
if ((test_result != 0)); then
9+
echo $test_result
10+
if (($test_result != 0)); then
1111
printf '%s\n' "Final bundle not working in NodeJS project" >&2
1212
exit 1
1313
fi
@@ -19,8 +19,8 @@ yarn add typescript --dev
1919
echo "Installing local bundle from TAR in Typescript project"
2020
yarn add ../../../imagekit*.tgz
2121
npx tsc && node index.js;test_result=$?
22-
echo test_result
23-
if ((test_result != 0)); then
22+
echo $test_result
23+
if (($test_result != 0)); then
2424
printf '%s\n' "Final bundle not working in Typescript project" >&2
2525
exit 1
2626
fi

0 commit comments

Comments
 (0)