scripts: Force file copying on install

This would otherwise cause an issue using cp to copy cp to itself.
This commit is contained in:
Quentin Rameau 2023-10-29 11:32:50 +01:00 committed by k0ga
parent c31af02d22
commit 6fc6bbbf71
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ do
mkdir -p $src
;;
c)
cp $src $dst
cp -f $src $dst
;;
*)
echo install: wrong entry type >&2