mirror of
https://github.com/alexanderepstein/Bash-Snippets
synced 2018-11-08 02:59:35 +01:00
Updating to 1.13.2
This commit is contained in:
parent
5a658adeb2
commit
c84ecbfb52
18 changed files with 28 additions and 19 deletions
|
@ -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
|
||||
|
|
10
changelog.md
10
changelog.md
|
@ -2,6 +2,16 @@
|
|||
|
||||
# Bash-Snippets Changelog
|
||||
|
||||
## Version 1.13.2
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
### Changes
|
||||
* Updated installer not allow updates if bash-snippets was installed through package manager
|
||||
|
||||
<div align="center">
|
||||
|
||||
## Version 1.13.1
|
||||
|
||||
</div>
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.13.1"
|
||||
currentVersion="1.13.2"
|
||||
state=""
|
||||
configuredClient=""
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
2
geo/geo
2
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.13.1"
|
||||
currentVersion="1.13.2"
|
||||
configuredClient=""
|
||||
configuredPython=""
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.13.1"
|
||||
currentVersion="1.13.2"
|
||||
configuredClient=""
|
||||
configuredPython=""
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
DELAY=1
|
||||
configuredClient=""
|
||||
currentVersion="1.13.1"
|
||||
currentVersion="1.13.2"
|
||||
|
||||
checkOpenSSL()
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
# Author: Alexander Epstein https://github.com/alexanderepstein
|
||||
|
||||
currentVersion="1.13.1"
|
||||
currentVersion="1.13.2"
|
||||
configuredClient=""
|
||||
configuredPython=""
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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=""
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue