]> git.sur5r.net Git - bacula/bacula/blob - bacula/release/makeall
Update makeall and add README to release directory
[bacula/bacula] / bacula / release / makeall
1 #!/bin/sh
2 #
3 # Make full release
4 #
5 version=5.0.0
6 #
7 # Bacula git repos
8 bacula=/home/kern/bacula/k
9 docs=/home/kern/bacula/docs
10 rescue=/home/kern/bacula/rescue
11
12 ./makeclean
13 ./makebacularel $bacula $version
14 ./makedocsrel $bacula $docs $version
15 ./makerescuerel $rescue $version
16 ./makewinrel $bacula $version | tee win$$.log
17
18 grep -i warning win$$.log >/dev/null
19 if [ $? -eq 0 ] ; then
20   echo " "
21   echo "Warnings in win$$.log"
22   exit 1
23 fi
24 grep -i error win$$.log >/dev/null
25 if [ $? -eq 0 ] ; then
26   echo " "
27   echo "Errors in win$$.log"
28   exit 1
29 fi
30 rm -f win$$.log