Update script
This commit is contained in:
parent
c242062cd9
commit
fe81cb784e
1 changed files with 29 additions and 0 deletions
29
update-scripts/1-0-0_1-1-0.sh
Executable file
29
update-scripts/1-0-0_1-1-0.sh
Executable file
|
@ -0,0 +1,29 @@
|
|||
#!/bin/bash
|
||||
# Script for updating Rangitaki 1.0.0 to 1.1.0
|
||||
# WARNING: Rangitaki 1.1.0 is for testing purposes only
|
||||
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
|
||||
# Creating temporary directory
|
||||
mkdir rbe-tmp
|
||||
# Updating rcc
|
||||
cp ./rcc/password.php ./rbe-tmp/
|
||||
rm -rf ./rcc
|
||||
mv ./rbe-new/rcc ./
|
||||
rm ./rcc/password.php
|
||||
mv ./rbe-tmp/password.php ./rcc/
|
||||
# Updating ressources
|
||||
rm -rf ./res
|
||||
mv ./rbe-new/res ./
|
||||
# Updating index.php
|
||||
rm ./index.php
|
||||
mv ./rbe-new/index.php ./
|
||||
# Updating themes
|
||||
rm ./themes/material-light.css
|
||||
mv ./rbe-new/themes/material-light.css ./themes
|
||||
# cleaning up
|
||||
rm -rf ./rbe-new
|
||||
rm -rf ./rbe-tmp
|
||||
fi
|
Reference in a new issue