Skip to content

Commit

Permalink
Fix - Disabled error check for android x86_64
Browse files Browse the repository at this point in the history
  • Loading branch information
satran004 committed Dec 5, 2021
1 parent 9f89e5a commit 4ea327b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
16 changes: 9 additions & 7 deletions scripts/build-android-x86_64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ cd ..
mkdir -p native/$NATIVE_FOLDER
cp rust/target/release/$TARGET_LIB_FILE native/$NATIVE_FOLDER

RESULT=$?
if [ $RESULT -eq 0 ]; then
echo success
ls native/$NATIVE_FOLDER && pwd
else
exit 1
fi
ls native/$NATIVE_FOLDER && pwd

#RESULT=$?
#if [ $RESULT -eq 0 ]; then
# echo success
# ls native/$NATIVE_FOLDER && pwd
#else
# exit 1
#fi
15 changes: 7 additions & 8 deletions scripts/build-mac-x86_64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ cd ..
mkdir -p native/$NATIVE_FOLDER
cp rust/target/release/$SRC_LIB_FILE native/$NATIVE_FOLDER

ls native/$NATIVE_FOLDER && pwd
#RESULT=$?
#if [ $RESULT -eq 0 ]; then
# echo success
# ls native/$NATIVE_FOLDER && pwd
#else
# exit 1
#fi
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo success
ls native/$NATIVE_FOLDER && pwd
else
exit 1
fi

0 comments on commit 4ea327b

Please sign in to comment.