scripts

My personal collection of scripts
git clone git://src.gearsix.net/scripts
Log | Files | Refs | Atom | README | LICENSE

commit d81fb80c58d1005c200a29933846826f17051714
parent 183c5c5ea18a61ff662ba0886afab58658d5cbfc
Author: gearsix <gearsix@tuta.io>
Date:   Thu, 17 Mar 2022 17:07:44 +0000

removed bad args from install.sh install

Diffstat:
Minstall.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/install.sh b/install.sh @@ -50,7 +50,7 @@ install_script () { cmd= if [[ $ln -eq 0 ]]; then - cmd=$(install -vpDm755 $src $dest) + cmd=$(install -vp $src $dest) else # ln the file cmd=$(chmod +x $src && echo ""; ln -vsf $(readlink -f $src) $dest) fi