diff --git a/pkg/de-p1st-repo/arch-repo-push-new.sh b/pkg/de-p1st-repo/arch-repo-push-new.sh index 1a1b5fc..ea88e6d 100644 --- a/pkg/de-p1st-repo/arch-repo-push-new.sh +++ b/pkg/de-p1st-repo/arch-repo-push-new.sh @@ -9,7 +9,7 @@ cd "${LOCAL_PKG_DIR}" || exit # check if at least one matching file exists match="0" for PKG in ./*.pkg.tar.{xz,zst}; do - [ -f "$PKG" ] || { echo "No match for pattern $PKG"; continue; } + [ -f "$PKG" ] || { echo "There are no local packages for the pattern $PKG"; continue; } # if we are here, then there is at least one match! match="1"