Skip to content

Commit

Permalink
check for android debug key
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Oct 1, 2024
1 parent 58f8c4c commit 17831ab
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .localrun/build_and_sign_apk_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ mkdir -p $_HOME_/artefacts
mkdir -p $_HOME_/script

echo '#! /bin/bash
echo "checking for android debug key: \"/script/debug.keystore\" ..."
if [ ! -e "/script/debug.keystore" ]; then
echo "android debug key file NOT found"
exit 1
fi
echo "android debug key file found"
# --------------------------------
echo "installing system packages ..."
export DEBIAN_FRONTEND=noninteractive
Expand Down

0 comments on commit 17831ab

Please sign in to comment.