We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0cb888 commit 182e7b4Copy full SHA for 182e7b4
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