apply_patch creates conflicts instead of rejects

This commit is contained in:
Reonu
2021-07-15 01:10:17 +01:00
parent ba670dcdd1
commit 793c9aacb2

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'