Updating to 1.14.2

This commit is contained in:
Alex Epstein 2017-07-22 10:04:06 -04:00
parent bc515829ad
commit b43459ab3f
18 changed files with 26 additions and 17 deletions

View File

@ -263,7 +263,7 @@ sparrow plg install [tool]
* Then cd into the cloned directory: ```cd Bash-Snippets``` * Then cd into the cloned directory: ```cd Bash-Snippets```
* Git checkout to the latest stable release ```git checkout v1.14.1``` * Git checkout to the latest stable release ```git checkout v1.14.2```
* Run the guided install script with * Run the guided install script with
```bash ```bash

View File

@ -2,6 +2,15 @@
# Bash-Snippets Changelog # Bash-Snippets Changelog
## Version 1.14.2
</div>
### Bugfixes
* Fixing bug where cloudup was incorrectly deleting the remote bitbucket repository.
<div align="center">
## Version 1.14.1 ## Version 1.14.1
</div> </div>

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.14.1" currentVersion="1.14.2"
configuredClient="" configuredClient=""
## rest of these variables are search flags ## rest of these variables are search flags
search="0" search="0"

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.14.1" currentVersion="1.14.2"
configuredClient="" configuredClient=""
private="0" ## state of private flag private="0" ## state of private flag
all="0" ## state of all flag all="0" ## state of all flag

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.14.1" currentVersion="1.14.2"
state="" state=""
configuredClient="" configuredClient=""

View File

@ -3,7 +3,7 @@
base="" base=""
exchangeTo="" exchangeTo=""
currentVersion="1.14.1" currentVersion="1.14.2"
configuredClient="" configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.14.1" currentVersion="1.14.2"
configuredClient="" configuredClient=""
directionsFlag="0" directionsFlag="0"
directionsMapFlag="0" directionsMapFlag="0"

View File

@ -6,7 +6,7 @@
# Github: https://github.com/jakewmeyer # Github: https://github.com/jakewmeyer
# #
currentVersion="1.14.1" currentVersion="1.14.2"
configuredClient="" configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.14.1" currentVersion="1.14.2"
declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify siteciphers todo) declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify siteciphers todo)
usedGithubInstallMethod="0" usedGithubInstallMethod="0"

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.14.1" currentVersion="1.14.2"
configuredClient="" configuredClient=""
configuredPython="" configuredPython=""

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Linyos Torovoltos github.com/linyostorovovoltos # Author: Linyos Torovoltos github.com/linyostorovovoltos
currentVersion="1.14.1" currentVersion="1.14.2"
multiline="0" # flag that indicates multiline option multiline="0" # flag that indicates multiline option

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.14.1" currentVersion="1.14.2"
configuredClient="" configuredClient=""
configuredPython="" configuredPython=""

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
DELAY=1 DELAY=1
configuredClient="" configuredClient=""
currentVersion="1.14.1" currentVersion="1.14.2"
checkOpenSSL() checkOpenSSL()
{ {

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.14.1" currentVersion="1.14.2"
configuredClient="" configuredClient=""
configuredPython="" configuredPython=""

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.14.1" currentVersion="1.14.2"
configuredClient="" configuredClient=""
configuredPython="" configuredPython=""
source ~/.bash_profile 2> /dev/null ## allows grabbing enviornment variable source ~/.bash_profile 2> /dev/null ## allows grabbing enviornment variable

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
flag="" flag=""
currentVersion="1.14.1" currentVersion="1.14.2"
configuredClient="" configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.14.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.14.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}" LANG="${LANG:-en}"
locale=$(echo $LANG | cut -c1-2) locale=$(echo $LANG | cut -c1-2)
configuredClient="" configuredClient=""

View File

@ -6,7 +6,7 @@ if [[ -d $HOME/.cache/ytview ]];then rm -rf $HOME/.cache/ytview/ ;fi
player="" player=""
configuredClient="" configuredClient=""
currentVersion="1.14.1" currentVersion="1.14.2"
flag="" flag=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one