Magento 2 – Security Patch Not Working

magento2PHPsecurity-patchserver-setup

I tried multiple times running patch -p1 ACSD-47578_2.4.4_2.4.5_COMPOSER_patch.composer.patch, even after running full server build on Magento root, but it seems to be stuck as seen in the image below. Our store is running Open source 2.4.4

enter image description here

Best Answer

You missing < between patch and <path_file>.

The correct command is:

patch -p1 < ACSD-47578_2.4.4_2.4.5_COMPOSER_patch.composer.patch
Related Topic