You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Where only the 'batch' parameter would suffice, see a functional example of the command
% patch '-p1' '--batch' -d '/usr/local/www/vendor/yiisoft/yii2' < '/usr/local/www/patches/yiisoft-yii2-widgets-pjaxasset-php.patch'
Hmm... Looks like a unified diff to me...
The text leading up to this was:
--------------------------
|--- /dev/null
|+++ /widgets/PjaxAsset.php
--------------------------
Patching file widgets/PjaxAsset.php using Plan A...
Patch creates file that already exists, Assuming ReversedHunk #1 succeeded at 19.
done
Both parameters also work, but each must be inside its own single quotes, see example:
% patch '-p1' '--posix' '--batch' -d '/usr/local/www/vendor/yiisoft/yii2' < '/usr/local/www/patches/yiisoft-yii2-widgets-pjaxasset-php.patch'
Hmm... Looks like a unified diff to me...
The text leading up to this was:
--------------------------
|--- /dev/null
|+++ /widgets/PjaxAsset.php
--------------------------
Patching file widgets/PjaxAsset.php using Plan A...
Patch creates file that already exists, Assuming ReversedUnreversed (or previously applied) patch detected! Ignoring -R.Hunk #1 succeeded at 19.
done
The important thing is to have only one parameter inside each single quote.
composer-patches/src/Plugin/Patches.php
Line 446 in 55c4289
Hi, in FreeBSD this line causes an error because both parameters are executed inside single quotes, see verbose after "composer update -v":
Where only the 'batch' parameter would suffice, see a functional example of the command
Both parameters also work, but each must be inside its own single quotes, see example:
The important thing is to have only one parameter inside each single quote.
The text was updated successfully, but these errors were encountered: