commit 6fc6bbbf7141533ef8506ae8085eef594b2345fe
Author: Quentin Rameau <[email protected]>
AuthorDate: Sun Oct 29 11:32:50 2023 +0100
Commit: k0ga <Roberto E. Vargas Caballero [email protected]>
CommitDate: Tue Nov 14 19:34:27 2023 +0100
scripts: Force file copying on install
This would otherwise cause an issue using cp to copy cp to itself.
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