mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2024-11-23 16:32:33 +01:00
Make it possible to define WordPress version by argument and automate process
This commit is contained in:
parent
a6b6205a3f
commit
11a2f2f45e
|
@ -3,6 +3,7 @@
|
|||
MOD_FILE="mod-update-core.php"
|
||||
TARGET_FILE="update-core.php"
|
||||
PATCH_FILE="wp-admin-update-core.patch"
|
||||
WP_VERSION="${1:-}"
|
||||
|
||||
set -e
|
||||
cd ./wp-src
|
||||
|
@ -44,8 +45,18 @@ echo "> Fixing patch header"
|
|||
sed -i "s/${MOD_FILE}/${TARGET_FILE}/g" "${PATCH_FILE}"
|
||||
|
||||
echo "> Patch file created ${PATCH_FILE}"
|
||||
|
||||
if [ -n "${WP_VERSION}" ]; then
|
||||
echo "> WordPress version defined: ${WP_VERSION}"
|
||||
echo "> Copying the patch file..."
|
||||
mkdir "../../patches/${WP_VERSION}" -p
|
||||
cp -v "./wp-src/${PATCH_FILE}" "../../patches/${WP_VERSION}/"
|
||||
else
|
||||
echo "> Please run: "
|
||||
echo " cp './wp-src/${PATCH_FILE}' '../../patches/5.x.x/'"
|
||||
fi
|
||||
|
||||
|
||||
echo ""
|
||||
echo "> Don't forget to inspect the patch and THEN commit"
|
||||
echo "> Finished"
|
Loading…
Reference in New Issue
Block a user