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