From 9c6054baf57a5d57c13f99518b1fd5afec51a69c Mon Sep 17 00:00:00 2001 From: John McQuah Date: Wed, 15 Jun 2022 17:42:11 -0400 Subject: [PATCH] pkgmeek: improved the parallelism between code and comment --- scripts/pkgmeek | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/pkgmeek b/scripts/pkgmeek index c740b21..44de99d 100755 --- a/scripts/pkgmeek +++ b/scripts/pkgmeek @@ -76,8 +76,8 @@ done ; } [ $errDL = 0 ] && { [ "$PKGMK_MTIME_ONLY" = "yes" ] || \ info "Successfully obtained all needed source files."; } || exit $E_DOWNLOAD -# Can stop here if the user asked for '-do', but honor any requests for '-um', '-us', -# '-eo', '-uf', or '-utd' by proceeding to those steps +# Can stop here if the user asked for '-do', but honor any requests for '-um', '-uf', +# '-us', '-eo', or '-utd' by proceeding to those steps [ "$PKGMK_DOWNLOAD_ONLY" = "no" ] || [ "$PKGMK_UPDATE_MD5" = "yes" ] || \ [ "$PKGMK_UPDATE_FOOTPRINT" = "yes" ] || [ "$PKGMK_UPDATE_SIG" = "yes" ] || \ [ "$PKGMK_EXTRACT_ONLY" = "yes" ] || [ "$PKGMK_MTIME_ONLY" = "yes" ] || exit 0 @@ -180,8 +180,8 @@ if [ "$pkg_utd" = 0 ] || [ "$PKGMK_FORCE" = "yes" ]; then if (cd pkg; bsdtar --format=gnutar $fake_uid -cf "$pkg_dir$package" *); then info "Package creation successful." else - { error "Unable to create the compressed package $package."; cleanup_work; - exit "$E_BUILD"; } + error "Unable to create the compressed package $package." + cleanup_work; exit "$E_BUILD" fi # Ensure that $work/ contains the package or a symlink to it, then check the footprint