Skip to content

Commit

Permalink
publish script: explicitly show archive path
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Dec 24, 2013
1 parent efa335d commit 49ec2ea
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions scripts/publish-updates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ echo "Rsync-ing SourceForge $SF_FOLDER$TEST site"

if [ "$TEST" = "-test" ]
then
echo "Published on the test site"
echo "Published on the test site."
else
echo "Published on the main site. Don't forget to publish the archive too!"
echo "Published on the main site."
fi

if [ -f *-SNAPSHOT.zip ]
Expand All @@ -70,4 +70,10 @@ then
mv -fv $ARCHIVE_PREFIX-SNAPSHOT.zip $ARCHIVE_FOLDER/$ARCHIVE_PREFIX-$NUMDATE.zip
fi

if [ "$TEST" != "-test" ]
then
echo "Don't forget to publish the archive too!"
echo "It is available from $ARCHIVE_FOLDER/$ARCHIVE_PREFIX-$NUMDATE.zip"
fi


0 comments on commit 49ec2ea

Please sign in to comment.