This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
rangitaki/update-scripts/1-0-0_1-1-0.sh

30 lines
917 B
Bash
Raw Normal View History

2015-11-22 18:19:22 +01:00
#!/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