Skip to content

Commit

Permalink
chore: fix upload script with android (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
adityastic authored and iamareebjamal committed Jan 3, 2020
1 parent 0148c45 commit fa469c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/upload-apk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ else
rm -rf badge-magic-dev*
fi

find ../app/build/outputs -type f \( -name '*.apk' -o -name '*.aab' \) -exec cp -v {} . \;
find ../android/build/outputs -type f \( -name '*.apk' -o -name '*.aab' \) -exec cp -v {} . \;

for file in app*; do
for file in android*; do
if [[ $file =~ ".aab" ]]; then
mv $file badge-magic-$TRAVIS_BRANCH-$file
else
Expand Down

0 comments on commit fa469c7

Please sign in to comment.