Skip to content

Commit 3b20752

Browse files
Modify sbt publish command to attempt avoiding stalling
1 parent a6c2ecb commit 3b20752

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

project/scripts/sbtPublish

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ echo "$PGP_SECRET" > "$HOME/.sbt/gpg/secring.asc"
2929

3030
# run sbt with the supplied arg
3131
SBT="$(cd "$(dirname "${BASH_SOURCE[0]}")" >& /dev/null && pwd)/sbt"
32-
"$SBT" -DSBT_PGP_USE_GPG=false "$RELEASE_CMD"
32+
export SBT_PGP_USE_GPG=false
33+
"$SBT" "$RELEASE_CMD"

0 commit comments

Comments
 (0)