mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
Added script checkUpgrade.sh
This commit is contained in:
parent
82bc4ae37d
commit
55039206b7
1 changed files with 26 additions and 0 deletions
26
checkUpgrade.sh
Executable file
26
checkUpgrade.sh
Executable file
|
@ -0,0 +1,26 @@
|
|||
#!/bin/sh
|
||||
|
||||
ROOT_DIR=$( cd `dirname $0`; pwd )
|
||||
|
||||
cd $ROOT_DIR
|
||||
|
||||
git fetch -q
|
||||
|
||||
CURRENT=`git show HEAD|head -n1`
|
||||
LASTEST=`git show FETCH_HEAD|head -n1`
|
||||
|
||||
[ "$1" = "-d" ] && echo -e "Current : $CURRENT\nLastest : $LASTEST"
|
||||
|
||||
if [ "$CURRENT" != "$LASTEST" ]
|
||||
then
|
||||
echo "New update is available"
|
||||
echo "======================="
|
||||
echo "Current installation of LdapSaisie is from the $CURRENT."
|
||||
echo "Changes have been made since."
|
||||
echo
|
||||
echo "The lastest commit is : "
|
||||
echo
|
||||
git show FETCH_HEAD|cat
|
||||
echo
|
||||
echo "** /!\\ You have to run the script upgradeFromGit.sh to upgrade your installation. /!\\ **"
|
||||
fi
|
Loading…
Reference in a new issue