update script
This commit is contained in:
parent
fe81cb784e
commit
9343b9a115
1 changed files with 8 additions and 1 deletions
9
update-scripts/1-0-0_1-1-0.sh
Executable file → Normal file
9
update-scripts/1-0-0_1-1-0.sh
Executable file → Normal file
|
@ -5,7 +5,14 @@ echo "WARNING: You're about to install a testing version of Rangitaki."
|
|||
read -r -p "Do you want to continue? (y/N) " answer
|
||||
if [[ "$answer" == "y" || "$answer" == "Y" ]]; then
|
||||
# Getting the up to date version
|
||||
git clone https://github.com/mmk2410/rangitaki/ ./rbe-new
|
||||
mkdir ./rbe-new
|
||||
cd ./rbe-new || exit
|
||||
wget -c https://github.com/mmk2410/Rangitaki/archive/v1.1.0.zip
|
||||
unzip v1.1.0.zip
|
||||
rm v1.1.0.zip
|
||||
mv ./Rangitaki-1.1.0/* ./
|
||||
rm ./Rangitaki-1.1.0
|
||||
cd ../ || exit
|
||||
# Creating temporary directory
|
||||
mkdir rbe-tmp
|
||||
# Updating rcc
|
||||
|
|
Reference in a new issue