diff options
author | cyBerta <cyberta@riseup.net> | 2021-01-10 22:55:28 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-01-10 22:55:28 +0100 |
commit | 50cf8dc8815a6770cf1be2f3c85e1531b5ef91e0 (patch) | |
tree | e15966b536fb7317caf13d8141ae0f415d3fede2 | |
parent | 7bcc167d78281efa832d65f540be75b88d157eb3 (diff) |
add missing Fatweb build flavor to prepareForDistribution shell script
-rwxr-xr-x | prepareForDistribution.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/prepareForDistribution.sh b/prepareForDistribution.sh index cd5dc288..5e39bb5c 100755 --- a/prepareForDistribution.sh +++ b/prepareForDistribution.sh @@ -302,10 +302,13 @@ then cp $BASE_FILE_DIR/${FLAVOR_LOWERCASE}ProductionArm64/beta/*.apk $RELEASES_FILE_DIR/. fi else - echo -e "${GREEN} -> build stable releases for flavor ${FLAVOR}${NC}" + echo -e "${GREEN} -> build stable releases for flavor ${FLAVOR}${NC}" ./gradlew clean assemble${FLAVOR}ProductionFatRelease --stacktrace || quit cp $BASE_FILE_DIR/${FLAVOR_LOWERCASE}ProductionFat/release/*.apk $RELEASES_FILE_DIR/. - + + ./gradlew clean assemble${FLAVOR}ProductionFatwebRelease --stacktrace || quit + cp $BASE_FILE_DIR/${FLAVOR_LOWERCASE}ProductionFatweb/release/*.apk $RELEASES_FILE_DIR/. + # custom builds might have disabled split apks -> check if build task exist if [[ $(./gradlew tasks --console plain | grep ${FLAVOR}ProductionX86Release) ]]; then ./gradlew clean assemble${FLAVOR}ProductionX86Release --stacktrace || quit |