From f382fe5edf9ead062ffe0808c653fac1e1024991 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Sat, 17 Oct 2009 16:39:47 +0200 Subject: [PATCH] Add makeall for release --- bacula/release/makeall | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 bacula/release/makeall diff --git a/bacula/release/makeall b/bacula/release/makeall new file mode 100755 index 0000000000..9756387ea8 --- /dev/null +++ b/bacula/release/makeall @@ -0,0 +1,30 @@ +#!/bin/sh +# +# Make full release +# +version=3.0.3 +# +# Bacula git repos +bacula=/home/kern/bacula/k +docs=/home/kern/bacula/docs +rescue=/home/kern/bacula/rescue + +./makeclean +./makebacularel $bacula $version +./makedocsrel $bacula $docs $version +./makerescuerel $rescue $version +./makewinrel $bacula $version | tee win$$.log + +grep -i warning win$$.log >/dev/null +if [ $? -eq 0 ] ; then + echo " " + echo "Warnings in win$$.log" + exit 1 +fi +grep -i error win$$.log >/dev/null +if [ $? -eq 0 ] ; then + echo " " + echo "Errors in win$$.log" + exit 1 +fi +rm -f win$$.log -- 2.39.5