Re: [hackers] [PATCH] scripts: Force file copying on install

2023-11-14 Thread Roberto E. Vargas Caballero
Applied, thanks.



[hackers] [PATCH] scripts: Force file copying on install

2023-10-29 Thread Quentin Rameau
This would otherwise cause an issue using cp to copy cp to itself.
---
 scripts/install | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/install b/scripts/install
index b391715..ce78c1d 100755
--- a/scripts/install
+++ b/scripts/install
@@ -9,7 +9,7 @@ do
mkdir -p $src
;;
c)
-   cp $src $dst
+   cp -f $src $dst
;;
*)
echo install: wrong entry type >&2
-- 
2.42.0