mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +01:00
fix release-build scripts for new gradle output paths
This commit is contained in:
parent
af0ddaa0f7
commit
3477bcf7b6
2 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ git checkout ${TAG}${BRANCH}
|
|||
cd ./xwords4/android/
|
||||
./scripts/arelease.sh --apk-list $OUT_FILE
|
||||
mkdir -p /tmp/releases
|
||||
cp app/build/outputs/apk/*.apk /tmp/releases
|
||||
cp app/build/outputs/apk/xw4/release/*.apk /tmp/releases
|
||||
|
||||
if [ -n "$XW_RELEASE_SCP_DEST" ]; then
|
||||
cat $OUT_FILE | while read APK; do
|
||||
|
|
|
@ -54,7 +54,7 @@ fi
|
|||
|
||||
if [ -z "$FILES" ]; then
|
||||
do_build
|
||||
for f in $(dirname $0)/../app/build/outputs/apk/*-unsigned-*.apk; do
|
||||
for f in $(dirname $0)/../app/build/outputs/apk/xw4/release/*-unsigned-*.apk; do
|
||||
$(dirname $0)/sign-align.sh --apk $f
|
||||
done
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue