File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ yarn init --yes
66echo " Installing local bundle from TAR in NodeJS project"
77yarn add ../../../imagekit* .tgz
88node 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
1313fi
@@ -19,8 +19,8 @@ yarn add typescript --dev
1919echo " Installing local bundle from TAR in Typescript project"
2020yarn add ../../../imagekit* .tgz
2121npx 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
2626fi
You can’t perform that action at this time.
0 commit comments