Merge pull request #13 from Reonu/uncringepatch

apply_patch creates conflicts instead of rejects
This commit is contained in:
CrashOveride95
2021-07-14 20:20:08 -04:00
committed by GitHub

View File

@@ -13,7 +13,7 @@ fi
read -p "Do you wish to apply the patch '$1'? [Y/N] " response
case "$response" in
Y|y)
patch -p1 < "$1"
patch -p1 --merge < "$1"
;;
N|n)
echo 'Quit'