From 9f5a4af9f3a12994d56cc68e0b6840d3504527b5 Mon Sep 17 00:00:00 2001 From: C0deH4cker Date: Wed, 6 Nov 2024 02:58:32 -0800 Subject: [PATCH] Bump minimum allowed pwnmake script version to 2.2 --- pwnmake/pwnmake-entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pwnmake/pwnmake-entrypoint.sh b/pwnmake/pwnmake-entrypoint.sh index 7950080..830560d 100755 --- a/pwnmake/pwnmake-entrypoint.sh +++ b/pwnmake/pwnmake-entrypoint.sh @@ -55,9 +55,9 @@ if [ -n "${PWNMAKE_VERBOSE:-}" ]; then set -x fi -# Version 2.1 has breaking changes that require cooperation between the pwnmake -# script and the pwnmake image. -PWNMAKE_VERSION_MIN=2.1 +# Version 2.2 has important fixes, enough that we should force updating (as I +# won't bother testing compatibility). +PWNMAKE_VERSION_MIN=2.2 if vercmp "$PWNMAKE_VERSION" -lt "$PWNMAKE_VERSION_MIN"; then echo "Your pwnmake script is out of date!" >&2 echo "Installed version: $PWNMAKE_VERSION" >&2