mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 09:59:06 +01:00
upgradeFromGit.sh : Added progress bar during documentation build.
This commit is contained in:
parent
133027e9bc
commit
486782e33f
1 changed files with 27 additions and 14 deletions
|
@ -240,14 +240,27 @@ then
|
|||
if [ "$a" == "y" -o "$a" == "Y" ]
|
||||
then
|
||||
msg "-> Build the doc : " -en
|
||||
cd $ROOT_DIR/doc >> $LOG_FILE 2>&1 && make >> $LOG_FILE 2>&1 && cd - >> $LOG_FILE 2>&1
|
||||
if [ $? -gt 0 ]
|
||||
then
|
||||
msg "Error"
|
||||
cd $ROOT_DIR/doc
|
||||
|
||||
make clean >> $LOG_FILE 2>&1
|
||||
make >> $LOG_FILE 2>&1 &
|
||||
|
||||
export P=$!
|
||||
|
||||
trap exitwhell INT
|
||||
|
||||
function exitwhell() {
|
||||
[ -n "$P" ] && kill -9 $P 2> /dev/null
|
||||
echo " -- INT -- "
|
||||
exit 1
|
||||
else
|
||||
msg "Ok"
|
||||
fi
|
||||
}
|
||||
|
||||
while [ -d /proc/$P ]
|
||||
do
|
||||
echo -n .
|
||||
sleep 1
|
||||
done
|
||||
echo done.
|
||||
|
||||
if [ -n "$EXPORT_DOC_DIR" ]
|
||||
then
|
||||
|
|
Loading…
Reference in a new issue