From 1f454fa656cf8d512bae187ae7f06ab98ba5b462 Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Tue, 28 Oct 2025 19:13:07 -0500 Subject: [PATCH] archive pls --- docker/scripts/entrypoint.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docker/scripts/entrypoint.sh b/docker/scripts/entrypoint.sh index d372d9c..bae8314 100755 --- a/docker/scripts/entrypoint.sh +++ b/docker/scripts/entrypoint.sh @@ -31,9 +31,6 @@ postEntrypoint() { if [ -n "$POST" ] && [ -x "./post-entrypoint.sh" ] ; then echo "EXECUTING POSTENTRY" ./post-entrypoint.sh - else - echo "POST: $POST" - ls -al fi } @@ -50,10 +47,9 @@ if [ ! -d "$DIR" ]; then git clone "$REPO" "$DIR" || exit $? fi cd "$DIR" && \ -touch archery && \ checkoutCommit && \ applyPatch && \ sudo pacman -Syu --noconfirm --noprogressbar &&\ -makepkg -smf --noconfirm --noprogressbar --skippgpcheck --noarchive && \ +makepkg -smf --noconfirm --noprogressbar --skippgpcheck && \ postEntrypoint exit $?;