From 350613d86545ac9f00f7a65a003a8afdcb544b97 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Fri, 9 Jun 2023 09:47:40 -0700 Subject: [PATCH] removed extra sources check --- extras/Slipstream.install | 3 ++- install.sh | 9 --------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/extras/Slipstream.install b/extras/Slipstream.install index 207a52a..4fa910e 100755 --- a/extras/Slipstream.install +++ b/extras/Slipstream.install @@ -1,6 +1,7 @@ #!/bin/bash # CodeDog Bootstrap installer script - +# To run this script without cloning or downloading anything: +# bash <(curl -ks 'https://github.com/pyr0ball/PRbL-bashrc/raw/main/extras/Slipstream.install') # Bash expansions to get the name and location of this script when run scriptname="${BASH_SOURCE[0]##*/}" rundir="${BASH_SOURCE[0]%/*}" diff --git a/install.sh b/install.sh index 0314b74..fbfb62a 100755 --- a/install.sh +++ b/install.sh @@ -339,15 +339,6 @@ userinstall(){ # Create install directory under user's home directory run mkdir -p ${installdir} - # Check if functions already exist, and check if functions are out of date - if [ -f ${installdir}/functions ] ; then - # if functions are out of date, remove before installing new version - local installerfrev=$(cat ${rundir}/functions | grep functionsrev ) - if [[ $(vercomp ${installerfrev##*=} $installer_functionsrev ) == 2 ]] ; then - run rm ${installdir}/functions - fi - fi - # Copy functions first install-functions