Skip to content
Snippets Groups Projects
Commit ffef18f0 authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Bug 1170: rub now keeps going after an error when -k option is given

parent 9e03fe9e
No related branches found
No related tags found
No related merge requests found
......@@ -617,7 +617,7 @@ if [ $updas != 0 ]; then
echo "Checkout of LOFAR/bootstrap"
(cd .. && $chocomm LOFAR/bootstrap) >> rub.log 2>&1
fi
$pgmpath/rub1 autoconf_share 2 h "" "" "$updas" "$recur" "$usesvn" "$command" || exit 1
$pgmpath/rub1 autoconf_share 2 h "" "" "$updas" "$recur" "$usesvn" "$command" || [ "$kopt" = "-k" ] || exit 1
fi
\rm -f allpkg.tmp
touch allpkg.tmp
......@@ -627,7 +627,7 @@ for PKG in $PKGS
do
pkg=`echo $PKG | sed -e 's%#-v.*%%'`
vers=`echo $PKG | sed -e 's%.*#-v%%'`
$pgmpath/rub1 $pkg 1 "$verstype" "$vers" "$cutag" "$update" "$recur" "$usesvn" "$command" || exit 1
$pgmpath/rub1 $pkg 1 "$verstype" "$vers" "$cutag" "$update" "$recur" "$usesvn" "$command" || [ "$kopt" = "-k" ] || exit 1
done
# Convert allpkg.tmp to lofarconf.in.private
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment