mirror of
https://github.com/G2-Games/welcome.sh.git
synced 2025-04-19 13:32:53 -05:00
Fixed download path
This commit is contained in:
parent
beb2e27859
commit
63423aa0e0
1 changed files with 6 additions and 16 deletions
22
install.sh
22
install.sh
|
@ -1,4 +1,4 @@
|
||||||
version=1.0.1
|
version=1.0.0
|
||||||
bashrc=~/.bashrc
|
bashrc=~/.bashrc
|
||||||
zshrc=~/.zshrc
|
zshrc=~/.zshrc
|
||||||
originaldir=$PWD
|
originaldir=$PWD
|
||||||
|
@ -21,7 +21,7 @@ then
|
||||||
then
|
then
|
||||||
wget https://github.com/G2-Games/welcome.sh/releases/download/v${version}/welcome.sh --P ~/.welcome/
|
wget https://github.com/G2-Games/welcome.sh/releases/download/v${version}/welcome.sh --P ~/.welcome/
|
||||||
if [[ $(echo $version | sed 's/[.][.]*//g' ) -ge 100 ]]; then
|
if [[ $(echo $version | sed 's/[.][.]*//g' ) -ge 100 ]]; then
|
||||||
wget https://github.com/G2-Games/welcome.sh/releases/download/v${version}/config.cfg --P ~
|
wget https://github.com/G2-Games/welcome.sh/releases/download/v${version}/config.cfg --P ~/.welcome/
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo "Cannot download, neither wget nor curl is available."
|
echo "Cannot download, neither wget nor curl is available."
|
||||||
|
@ -45,13 +45,8 @@ then
|
||||||
echo -e "\e[35mwelcome.sh\e[0m already installed!"
|
echo -e "\e[35mwelcome.sh\e[0m already installed!"
|
||||||
if [[ $(echo $version | sed 's/[.][.]*//g' ) -gt $(grep version ~/.welcome/welcome.sh | sed 's/.*=//' | sed 's/[.][.]*//g') ]]; then
|
if [[ $(echo $version | sed 's/[.][.]*//g' ) -gt $(grep version ~/.welcome/welcome.sh | sed 's/.*=//' | sed 's/[.][.]*//g') ]]; then
|
||||||
echo -en "Do you want to \e[36mupdate \e[35mwelcome.sh\e[0m? (v$(grep version ~/.welcome/welcome.sh | sed 's/.*=//') => v$version) \n\e[36mY/n\e[0m"
|
echo -en "Do you want to \e[36mupdate \e[35mwelcome.sh\e[0m? (v$(grep version ~/.welcome/welcome.sh | sed 's/.*=//') => v$version) \n\e[36mY/n\e[0m"
|
||||||
if [[ "$environment" = "bash" ]]
|
if [[ "$environment" = "bash" ]]; then read -p " " -n 1 -r;
|
||||||
then
|
elif [[ "$environment" = "zsh" ]]; then read -q "REPLY? " -n 1 -r; fi
|
||||||
read -p " " -n 1 -r
|
|
||||||
elif [[ "$environment" = "zsh" ]]
|
|
||||||
then
|
|
||||||
read -q "REPLY? " -n 1 -r
|
|
||||||
fi
|
|
||||||
echo
|
echo
|
||||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||||
then
|
then
|
||||||
|
@ -101,13 +96,8 @@ then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
echo -en "Do you want to \e[31muninstall \e[35mwelcome.sh\e[0m?\n\e[36mY/n\e[0m"
|
echo -en "Do you want to \e[31muninstall \e[35mwelcome.sh\e[0m?\n\e[36mY/n\e[0m"
|
||||||
if [[ "$environment" = "bash" ]]
|
if [[ "$environment" = "bash" ]]; then read -p " " -n 1 -r;
|
||||||
then
|
elif [[ "$environment" = "zsh" ]]; then read -q "REPLY? " -n 1 -r; fi
|
||||||
read -p " " -n 1 -r
|
|
||||||
elif [[ "$environment" = "zsh" ]]
|
|
||||||
then
|
|
||||||
read -q "REPLY? " -n 1 -r
|
|
||||||
fi
|
|
||||||
echo
|
echo
|
||||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in a new issue