Add specify WP_VERSION in arguments

This commit is contained in:
xZero707
2021-09-23 17:44:41 +02:00
parent b8646bd85f
commit 6e78e79fa7
3 changed files with 13 additions and 4 deletions

View File

@@ -1,8 +1,15 @@
#!/usr/bin/env sh
set -e
WP_VERSION="${1:-}"
if [ -z "${WP_VERSION}" ]; then
echo "> Error: WP_VERSION is not specified"
exit 1
fi
echo "> Building helper image..."
docker build -t local/wp-patch-util .
docker build --build-arg "WP_VERSION=${WP_VERSION}" -t local/wp-patch-util .
mkdir wp-src/ -p
echo ""
echo "> Running helper container..."
@@ -22,4 +29,4 @@ echo "wp_die("
echo " __( 'Sorry, you are not allowed to update this site.' ) ."
echo " ' Click <a href=\"https://github.com/N0rthernL1ghts/wordpress/wiki/WordPress-Core-Updates\">here</a> to learn why.'"
echo ");"
echo ""
echo ""