Create/fetch known_problem file in buildshorewall

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@7755 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2007-11-24 21:19:53 +00:00
parent d6a159b283
commit ca00c004c6

View File

@ -894,6 +894,17 @@ for file in *; do
esac
done
if [ -n "$PATCHRELEASE" ]; then
svn update ~/shorewall/tags/${VERSION%-*}
if [ -f ~/shorewall/tags/${VERSION%-*}/known_problems.txt ]; then
cp ~/shorewall/tags/${VERSION%-*}/known_problems.txt .
else
echo "There are no known problems in Shorewall version $VERSION" > known_problems.txt
fi
else
echo "There are no known problems in Shorewall version $VERSION" > known_problems.txt
fi
if [ -n "$OLDVERSION" ]; then
progress_message "Creating patch-$VERSION ..."