Skip to content

Commit 9cd143f

Browse files
author
Marcel Schnelle
committed
Fixed snapshot deployment script
1 parent b777cab commit 9cd143f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

scripts/deploy_snapshot.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
#!/bin/bash
2-
#
3-
# Deploy a jar, source jar, and javadoc jar to Sonatype's snapshot repo.
4-
#
5-
# Adapted from https://coderwall.com/p/9b_lfq and
6-
# http://benlimmer.com/2013/12/26/automatically-publish-javadoc-to-gh-pages-with-travis-ci/
72

83
SLUG="aurae/android-junit5"
94
JDK="oraclejdk8"
@@ -21,6 +16,6 @@ elif [ "$TRAVIS_BRANCH" != "$BRANCH" ]; then
2116
echo "Skipping snapshot deployment: wrong branch. Expected '$BRANCH' but was '$TRAVIS_BRANCH'."
2217
else
2318
echo "Deploying snapshot..."
24-
../gradlew artifactoryPublish
19+
./gradlew artifactoryPublish
2520
echo "Snapshot deployed!"
2621
fi

0 commit comments

Comments
 (0)