diff --git a/README.md b/README.md
index 20dcf7e..6d38645 100644
--- a/README.md
+++ b/README.md
@@ -263,7 +263,7 @@ sparrow plg install [tool]
* Then cd into the cloned directory: ```cd Bash-Snippets```
-* Git checkout to the latest stable release ```git checkout v1.13.1```
+* Git checkout to the latest stable release ```git checkout v1.13.2```
* Run the guided install script with
```bash
diff --git a/changelog.md b/changelog.md
index 9bc65b6..cdff920 100644
--- a/changelog.md
+++ b/changelog.md
@@ -2,6 +2,16 @@
# Bash-Snippets Changelog
+## Version 1.13.2
+
+
+
+
+### Changes
+* Updated installer not allow updates if bash-snippets was installed through package manager
+
+
+
## Version 1.13.1
diff --git a/cheat/cheat b/cheat/cheat
index fad3097..f3f0539 100755
--- a/cheat/cheat
+++ b/cheat/cheat
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
-currentVersion="1.13.1"
+currentVersion="1.13.2"
configuredClient=""
## rest of these variables are search flags
search="0"
diff --git a/cloudup/cloudup b/cloudup/cloudup
index 8db88c4..cc4a3fa 100755
--- a/cloudup/cloudup
+++ b/cloudup/cloudup
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
-currentVersion="1.13.1"
+currentVersion="1.13.2"
configuredClient=""
private="0" ## state of private flag
all="0" ## state of all flag
diff --git a/crypt/crypt b/crypt/crypt
index 567beab..d502522 100755
--- a/crypt/crypt
+++ b/crypt/crypt
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
-currentVersion="1.13.1"
+currentVersion="1.13.2"
state=""
configuredClient=""
diff --git a/currency/currency b/currency/currency
index 5fc9c02..63f6b1d 100755
--- a/currency/currency
+++ b/currency/currency
@@ -3,7 +3,7 @@
base=""
exchangeTo=""
-currentVersion="1.13.1"
+currentVersion="1.13.2"
configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one
diff --git a/extras/Linux/maps/maps b/extras/Linux/maps/maps
index 39b2b08..c6e0fa4 100755
--- a/extras/Linux/maps/maps
+++ b/extras/Linux/maps/maps
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
-currentVersion="1.13.1"
+currentVersion="1.13.2"
configuredClient=""
directionsFlag="0"
directionsMapFlag="0"
diff --git a/geo/geo b/geo/geo
index 9daf574..41df8be 100755
--- a/geo/geo
+++ b/geo/geo
@@ -6,7 +6,7 @@
# Github: https://github.com/jakewmeyer
#
-currentVersion="1.13.1"
+currentVersion="1.13.2"
configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one
diff --git a/install.sh b/install.sh
index 01c6c5a..7202cbf 100755
--- a/install.sh
+++ b/install.sh
@@ -1,6 +1,6 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
-currentVersion="1.13.1"
+currentVersion="1.13.2"
declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify siteciphers todo)
usedGithubInstallMethod="0"
@@ -61,8 +61,7 @@ elif [[ $1 == "update" ]]; then
updateTool $tool || exit 1
done
if [[ $usedGithubInstallMethod == "1" ]]; then copyManpage || exit 1
- else { echo "It appears you have installed bash-snippets through a package manager, you must update it with the respective package manager."; \
- rm -rf ~/Bash-Snippets || echo "Error: cannot remove temp files located at ~/Bash-Snippets you must delete them manually"; exit 0; } ;fi
+else { echo "It appears you have installed bash-snippets through a package manager, you must update it with the respective package manager."; exit 0; } ;fi
elif [[ $1 == "all" ]];then
for tool in "${tools[@]}"
do
diff --git a/movies/movies b/movies/movies
index 4c740f9..e43aa23 100755
--- a/movies/movies
+++ b/movies/movies
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
-currentVersion="1.13.1"
+currentVersion="1.13.2"
configuredClient=""
configuredPython=""
diff --git a/qrify/qrify b/qrify/qrify
index 3223b0a..6b04db5 100755
--- a/qrify/qrify
+++ b/qrify/qrify
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Linyos Torovoltos github.com/linyostorovovoltos
-currentVersion="1.13.1"
+currentVersion="1.13.2"
multiline="0" # flag that indicates multiline option
diff --git a/short/short b/short/short
index 56b494c..4baafe0 100755
--- a/short/short
+++ b/short/short
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
-currentVersion="1.13.1"
+currentVersion="1.13.2"
configuredClient=""
configuredPython=""
diff --git a/siteciphers/siteciphers b/siteciphers/siteciphers
index f888474..f459cf8 100755
--- a/siteciphers/siteciphers
+++ b/siteciphers/siteciphers
@@ -1,7 +1,7 @@
#!/bin/bash
DELAY=1
configuredClient=""
-currentVersion="1.13.1"
+currentVersion="1.13.2"
checkOpenSSL()
{
diff --git a/stocks/stocks b/stocks/stocks
index f90ff7a..bec1632 100755
--- a/stocks/stocks
+++ b/stocks/stocks
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
-currentVersion="1.13.1"
+currentVersion="1.13.2"
configuredClient=""
configuredPython=""
diff --git a/taste/taste b/taste/taste
index 090cf0a..99f94cf 100755
--- a/taste/taste
+++ b/taste/taste
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
-currentVersion="1.13.1"
+currentVersion="1.13.2"
configuredClient=""
configuredPython=""
source ~/.bash_profile 2> /dev/null ## allows grabbing enviornment variable
diff --git a/todo/todo b/todo/todo
index b0c72e1..1631280 100755
--- a/todo/todo
+++ b/todo/todo
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
flag=""
-currentVersion="1.13.1"
+currentVersion="1.13.2"
configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one
diff --git a/weather/weather b/weather/weather
index 0bba4fc..1ab9518 100755
--- a/weather/weather
+++ b/weather/weather
@@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
-currentVersion="1.13.1" #This version variable should not have a v but should contain all other characters ex Github release tag is v1.2.4 currentVersion is 1.2.4
+currentVersion="1.13.2" #This version variable should not have a v but should contain all other characters ex Github release tag is v1.2.4 currentVersion is 1.2.4
LANG="${LANG:-en}"
locale=$(echo $LANG | cut -c1-2)
configuredClient=""
diff --git a/ytview/ytview b/ytview/ytview
index e5a485f..ab6e14e 100755
--- a/ytview/ytview
+++ b/ytview/ytview
@@ -6,7 +6,7 @@ if [[ -d $HOME/.cache/ytview ]];then rm -rf $HOME/.cache/ytview/ ;fi
player=""
configuredClient=""
-currentVersion="1.13.1"
+currentVersion="1.13.2"
flag=""
## This function determines which http get tool the system has installed and returns an error if there isnt one