We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 76bd8f7 + 182e7b4 commit cab9c39Copy full SHA for cab9c39
admin/build.sh
@@ -1,5 +1,7 @@
1
#!/bin/bash
2
3
+set -e
4
+
5
# prep environment for publish to sonatype staging if the HEAD commit is tagged
6
7
# git on travis does not fetch tags, but we have TRAVIS_TAG
@@ -17,7 +19,7 @@ if [ "$TRAVIS_JDK_VERSION" == "$PUBLISH_JDK" ] && [[ "$TRAVIS_TAG" =~ ^v[0-9]+\.
17
19
K=$encrypted_1ce132863fa7_key
18
20
IV=$encrypted_1ce132863fa7_iv
21
- aes-256-cbc -K $K -iv $IV -in admin/secring.asc.enc -out admin/secring.asc -d
22
+ openssl aes-256-cbc -K $K -iv $IV -in admin/secring.asc.enc -out admin/secring.asc -d
23
fi
24
25
sbt ++$TRAVIS_SCALA_VERSION "$publishVersion" clean update test publishLocal $extraTarget
0 commit comments