Tweak logging for release notes

This commit is contained in:
Steve McIntyre 2019-03-21 13:04:52 +00:00
parent 4fdd13cc0c
commit 53cfc9f3f5
1 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ if [ "$OMIT_MANUAL" != 1 ]; then
fi
if [ "$OMIT_RELEASE_NOTES"x = "1"x ]; then
echo "Omitting release notes, as requested"
echo " Omitting release notes, as requested"
else
for ARCH in $ARCHES
do
@ -60,14 +60,14 @@ else
RN=$DIR/doc/release-notes
mkdir -p $RN
cd $RN
echo "Downloading most recent release notes for $ARCH"
echo " Downloading most recent release notes for $ARCH"
$WGET $RELEASE_NOTES_LOCATION/release-notes-$ARCH.tar.gz
if [ -e release-notes-$ARCH.tar.gz ] ; then
tar xzvf release-notes-$ARCH.tar.gz
rm -f release-notes-$ARCH.tar.gz
rm -f */*.ps
else
echo "No release notes found at $RELEASE_NOTES_LOCATION/release-notes-$ARCH.tar.gz"
echo " No release notes found at $RELEASE_NOTES_LOCATION/release-notes-$ARCH.tar.gz"
fi
fi
done