Add tool/util [patch-util] - useful only for devs/contributors

This commit is contained in:
xZero707
2021-03-19 19:10:54 +01:00
parent a61b1c90dd
commit 3c7ed3fff5
5 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#!/usr/bin/env sh
echo "> Downloading WordPress ${WP_VERSION} ..."
# Removes trailing zero if found
WP_SHORT_VERSION=$(echo "${WP_VERSION}" | sed --expression='s/.0//g');
wp --allow-root --path="/tmp" core download --locale="${WP_LOCALE}" --version="${WP_SHORT_VERSION}"
if [ ! -f "/tmp/wp-admin/update-core.php" ]; then
echo "X WordPress download failed"
exit 1
fi
mkdir src -p
rm src/* -f
cp /tmp/wp-admin/update-core.php src/
cp src/update-core.php src/mod-update-core.php
echo "> Files ready."
exit 0