diff options
author | Thomas Penteker <tek@serverop.de> | 2016-04-07 22:48:26 +0200 |
---|---|---|
committer | Thomas Penteker <tek@serverop.de> | 2016-04-07 22:48:26 +0200 |
commit | 430a36bfa26624b98c0ffc95e2db87e8eaf41932 (patch) | |
tree | 8cc0332b4337c9b08bd40c851275a8ff92a881f4 | |
parent | 1286051d5a1a79be795185117ec9cdc7ea868f82 (diff) | |
download | pkgutils-430a36bfa26624b98c0ffc95e2db87e8eaf41932.tar.gz pkgutils-430a36bfa26624b98c0ffc95e2db87e8eaf41932.tar.xz |
fix indentation even more
-rwxr-xr-x | pkgmk.in | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -849,20 +849,20 @@ main() { exit 0 fi - if [ "$PKGMK_UPDATE_SIGNATURE" = "yes" ]; then - download_source - check_file "$PKGMK_SIGNATURE" - make_signature - info "Signature updated." - exit 0 - fi - - if [ "$PKGMK_REFRESH_SIGNATURE" = "yes" ]; then - check_file "$PKGMK_SIGNATURE" - refresh_signature - info "Signature refreshed." - exit 0 - fi + if [ "$PKGMK_UPDATE_SIGNATURE" = "yes" ]; then + download_source + check_file "$PKGMK_SIGNATURE" + make_signature + info "Signature updated." + exit 0 + fi + + if [ "$PKGMK_REFRESH_SIGNATURE" = "yes" ]; then + check_file "$PKGMK_SIGNATURE" + refresh_signature + info "Signature refreshed." + exit 0 + fi if [ "$PKGMK_DOWNLOAD_ONLY" = "yes" ]; then download_source |