From be29b712ad20828e781284edbc62bb2d4ce27849 Mon Sep 17 00:00:00 2001 From: cyBerta Date: Thu, 25 Mar 2021 21:04:24 +0100 Subject: remove trailing semicolons where not necessary --- scripts/prepareForDistribution.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/prepareForDistribution.sh b/scripts/prepareForDistribution.sh index b7f132eb..f6668155 100755 --- a/scripts/prepareForDistribution.sh +++ b/scripts/prepareForDistribution.sh @@ -159,17 +159,17 @@ do echo -e "${RED}ERROR: Version name has to be a git tag!${NC}" exit fi - elif [[ ${!i} = "-k" || ${!i} = "-key" ]]; + elif [[ ${!i} = "-k" || ${!i} = "-key" ]] then ((i++)) GPG_KEY=${!i} export GPG_KEY=${GPG_KEY} - elif [[ ${!i} = "-u" || ${!i} = "-user" ]]; + elif [[ ${!i} = "-u" || ${!i} = "-user" ]] then ((i++)) GPG_KEY_USER=${!i} export GPG_KEY_USER=${GPG_KEY_USER} - elif [[ ${!i} = "-b" || ${!i} = "-beta" ]]; + elif [[ ${!i} = "-b" || ${!i} = "-beta" ]] then BETA=true elif [[ ${!i} = "-no-tag" ]]; @@ -183,7 +183,7 @@ do ((i++)) FLAVOR="Custom" FLAVOR_LOWERCASE="custom" - elif [[ ${!i} = "-h" || ${!i} = "-help" ]]; + elif [[ ${!i} = "-h" || ${!i} = "-help" ]] then echo -e " sign [-ks -fp -f -b -u -k] sign a given apk (both app signing and GPG signing) -- cgit v1.2.3