From 0794772ad8378b6bb511dfa5e03e5394c60a4c20 Mon Sep 17 00:00:00 2001 From: Zachary Robinson Date: Mon, 7 Jan 2019 20:15:03 -0800 Subject: [PATCH] Fix name-release-files.sh again I forgot to update it for the new project restructure --- travis-scripts/name-release-files.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/travis-scripts/name-release-files.sh b/travis-scripts/name-release-files.sh index 25f8666c..f4cfccfa 100755 --- a/travis-scripts/name-release-files.sh +++ b/travis-scripts/name-release-files.sh @@ -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