From 8703f12e8d8723ce0c9d9558129af2121dadbb2c Mon Sep 17 00:00:00 2001 From: Alan Weinstock Date: Thu, 1 Sep 2022 14:23:28 -0700 Subject: [PATCH] fixed skel userfile install command throwing a fit --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index be76d3b..405a487 100644 --- a/install.sh +++ b/install.sh @@ -100,8 +100,8 @@ install-deps(){ userinstall(){ mkdir -p ${userinstalldir} cp ${rundir}/pyr0-bash-functions/functions ${userinstalldir}/functions - cp -r ${rundir}/lib/skel/* $HOME - cp -r ${rundir}/lib/skel/.* $HOME + #cp -r ${rundir}/lib/skel/* $HOME/ + scp -r ${rundir}/lib/skel/.* $HOME check-deps if [[ "$bins_missing" != "false" ]] ; then warn "Some of the utilities needed by this script are missing" @@ -135,8 +135,8 @@ userinstall(){ globalinstall(){ mkdir -p ${globalinstalldir} cp ${rundir}/pyr0-bash-functions/functions ${globalinstalldir}/functions - cp -r ${rundir}/lib/skel/* /etc/skel/ - cp -r ${rundir}/lib/skel/.* /etc/skel/ + #cp -r ${rundir}/lib/skel/* /etc/skel/ + scp -r ${rundir}/lib/skel/.* /etc/skel/ check-deps if [[ "$bins_missing" != "false" ]] ; then warn "Some of the utilities needed by this script are missing"