Skip to content

Commit

Permalink
Fix name-release-files.sh again
Browse files Browse the repository at this point in the history
I forgot to update it for the new project restructure
  • Loading branch information
RobinsonZ authored Jan 8, 2019
1 parent de9b0aa commit 0794772
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions travis-scripts/name-release-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -ev
# check if $TRAVIS_TAG is set-if so, rename lib's output jars to make sense in preparation for uploading them to Github
if [ -n "$TRAVIS_TAG" ]
then
mv lib/build/libs/lib.jar "build/libs/ROOSTER-$TRAVIS_TAG.jar"
mv lib/build/libs/lib-sources.jar "build/libs/ROOSTER-$TRAVIS_TAG-sources.jar"
mv lib/build/libs/lib-javadoc.jar "build/libs/ROOSTER-$TRAVIS_TAG-javadoc.jar"
mv build/libs/lib.jar "build/libs/ROOSTER-$TRAVIS_TAG.jar"
mv build/libs/lib-sources.jar "build/libs/ROOSTER-$TRAVIS_TAG-sources.jar"
mv build/libs/lib-javadoc.jar "build/libs/ROOSTER-$TRAVIS_TAG-javadoc.jar"
fi

0 comments on commit 0794772

Please sign in to comment.