archive pls
All checks were successful
App Image CI / Build app image (push) Successful in -1m23s
Docker Image CI / Build build images (arch) (push) Successful in 1s
Docker Image CI / Build build images (artix) (push) Successful in -27s
NPM Audit Check / Check NPM audit (push) Successful in -2m10s

This commit is contained in:
2025-10-28 19:13:07 -05:00
parent 18c0e27da4
commit 1f454fa656

View File

@@ -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 $?;