diff options
author | cyBerta <cyberta@riseup.net> | 2021-03-25 21:04:24 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-03-26 09:04:50 +0100 |
commit | be29b712ad20828e781284edbc62bb2d4ce27849 (patch) | |
tree | f8672ac1d908f71086a41b51e5646002c0bce4d4 /scripts | |
parent | fd2d9c52fa85cfe8c6f0c9f5ca461bc1fbf4b055 (diff) |
remove trailing semicolons where not necessary
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/prepareForDistribution.sh | 8 |
1 files changed, 4 insertions, 4 deletions
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) |