mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
upgradeFromGit : fix bug
This commit is contained in:
parent
40c1bb9b49
commit
bf14519358
1 changed files with 13 additions and 13 deletions
|
@ -56,8 +56,8 @@ done
|
||||||
|
|
||||||
if [ $DO_DOC -eq 1 ]
|
if [ $DO_DOC -eq 1 ]
|
||||||
then
|
then
|
||||||
msg "-> Clean de la doc :" -en
|
msg "-> Clean the doc :" -en
|
||||||
cd $SVN_DIR/doc >> $LOG_FILE && make clean >> $LOG_FILE && cd - >> $LOG_FILE
|
cd $ROOT_DIR/doc >> $LOG_FILE && make clean >> $LOG_FILE && cd - >> $LOG_FILE
|
||||||
if [ $? -gt 0 ]
|
if [ $? -gt 0 ]
|
||||||
then
|
then
|
||||||
msg "Error"
|
msg "Error"
|
||||||
|
@ -70,7 +70,7 @@ fi
|
||||||
if [ "$THEME" != "" ]
|
if [ "$THEME" != "" ]
|
||||||
then
|
then
|
||||||
msg "\t\t-> Remove theme : " -en
|
msg "\t\t-> Remove theme : " -en
|
||||||
rm -f $SVN_DIR/trunk/templates/$THEME $SVN_DIR/trunk/images/$THEME $SVN_DIR/trunk/css/$THEME >> $LOG_FILE 2>&1
|
rm -f $ROOT_DIR/trunk/templates/$THEME $ROOT_DIR/trunk/images/$THEME $ROOT_DIR/trunk/css/$THEME >> $LOG_FILE 2>&1
|
||||||
if [ $? -gt 0 ]
|
if [ $? -gt 0 ]
|
||||||
then
|
then
|
||||||
msg "Error"
|
msg "Error"
|
||||||
|
@ -108,10 +108,10 @@ do
|
||||||
if [ -f $SRC ]
|
if [ -f $SRC ]
|
||||||
then
|
then
|
||||||
msg
|
msg
|
||||||
if [ -f $SVN_DIR/$i ]
|
if [ -f $ROOT_DIR/$i ]
|
||||||
then
|
then
|
||||||
msg "\t\t-> Backup original file : " -en
|
msg "\t\t-> Backup original file : " -en
|
||||||
mv $SVN_DIR/$i $SVN_DIR/$i.sav >> $LOG_FILE 2>&1
|
mv $ROOT_DIR/$i $ROOT_DIR/$i.sav >> $LOG_FILE 2>&1
|
||||||
if [ $? -gt 0 ]
|
if [ $? -gt 0 ]
|
||||||
then
|
then
|
||||||
msg "Error"
|
msg "Error"
|
||||||
|
@ -122,7 +122,7 @@ do
|
||||||
msg "\t\t-> Check possible change of the original file since last upgrade : " -en
|
msg "\t\t-> Check possible change of the original file since last upgrade : " -en
|
||||||
if [ -f $SRC.orig ]
|
if [ -f $SRC.orig ]
|
||||||
then
|
then
|
||||||
DIFF=`diff $SVN_DIR/$i.sav $SRC.orig`
|
DIFF=`diff $ROOT_DIR/$i.sav $SRC.orig`
|
||||||
msg "$DIFF" -e
|
msg "$DIFF" -e
|
||||||
if [ "$DIFF" != "" ]
|
if [ "$DIFF" != "" ]
|
||||||
then
|
then
|
||||||
|
@ -131,7 +131,7 @@ do
|
||||||
echo "Reponse : $a" >> $LOG_FILE
|
echo "Reponse : $a" >> $LOG_FILE
|
||||||
if [ "$a" == "y" -o "$a" == "Y" ]
|
if [ "$a" == "y" -o "$a" == "Y" ]
|
||||||
then
|
then
|
||||||
vi -d $SRC $SVN_DIR/$i.sav
|
vi -d $SRC $ROOT_DIR/$i.sav
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
msg "No change"
|
msg "No change"
|
||||||
|
@ -140,7 +140,7 @@ do
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
msg "\t\t-> Backup file for next upgrade : " -en
|
msg "\t\t-> Backup file for next upgrade : " -en
|
||||||
cp -f $SVN_DIR/$i.sav $SRC.orig >> $LOG_FILE 2>&1
|
cp -f $ROOT_DIR/$i.sav $SRC.orig >> $LOG_FILE 2>&1
|
||||||
if [ $? -gt 0 ]
|
if [ $? -gt 0 ]
|
||||||
then
|
then
|
||||||
msg "Error"
|
msg "Error"
|
||||||
|
@ -149,7 +149,7 @@ do
|
||||||
msg "Ok"
|
msg "Ok"
|
||||||
fi
|
fi
|
||||||
msg "\t\t-> Install local file : " -en
|
msg "\t\t-> Install local file : " -en
|
||||||
ln -s $SRC $SVN_DIR/$i >> $LOG_FILE 2>&1
|
ln -s $SRC $ROOT_DIR/$i >> $LOG_FILE 2>&1
|
||||||
if [ $? -gt 0 ]
|
if [ $? -gt 0 ]
|
||||||
then
|
then
|
||||||
msg "Error"
|
msg "Error"
|
||||||
|
@ -163,9 +163,9 @@ done
|
||||||
if [ "$THEME" != "" ]
|
if [ "$THEME" != "" ]
|
||||||
then
|
then
|
||||||
msg "-> Install theme : " -en
|
msg "-> Install theme : " -en
|
||||||
ln -s $LOCAL_SAV_DIR/theme/templates $SVN_DIR/trunk/templates/$THEME >> $LOG_FILE 2>&1
|
ln -s $LOCAL_SAV_DIR/theme/templates $ROOT_DIR/trunk/templates/$THEME >> $LOG_FILE 2>&1
|
||||||
ln -s $LOCAL_SAV_DIR/theme/images $SVN_DIR/trunk/images/$THEME >> $LOG_FILE 2>&1
|
ln -s $LOCAL_SAV_DIR/theme/images $ROOT_DIR/trunk/images/$THEME >> $LOG_FILE 2>&1
|
||||||
ln -s $LOCAL_SAV_DIR/theme/css $SVN_DIR/trunk/css/$THEME >> $LOG_FILE 2>&1
|
ln -s $LOCAL_SAV_DIR/theme/css $ROOT_DIR/trunk/css/$THEME >> $LOG_FILE 2>&1
|
||||||
msg "Ok"
|
msg "Ok"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -176,7 +176,7 @@ then
|
||||||
if [ "$a" == "y" -o "$a" == "Y" ]
|
if [ "$a" == "y" -o "$a" == "Y" ]
|
||||||
then
|
then
|
||||||
msg "-> Compile de la doc :" -en
|
msg "-> Compile de la doc :" -en
|
||||||
cd $SVN_DIR/doc >> $LOG_FILE && make >> $LOG_FILE && cd - >> $LOG_FILE
|
cd $ROOT_DIR/doc >> $LOG_FILE && make >> $LOG_FILE && cd - >> $LOG_FILE
|
||||||
if [ $? -gt 0 ]
|
if [ $? -gt 0 ]
|
||||||
then
|
then
|
||||||
msg "Error"
|
msg "Error"
|
||||||
|
|
Loading…
Reference in a new issue