Fix space in 'not a tty' error

This commit is contained in:
Paul Campbell 2018-02-23 20:11:23 +00:00
parent 9e42c6dd4f
commit 5e13e71a68

2
Jenkinsfile vendored
View file

@ -16,7 +16,7 @@ pipeline {
}
stage('Deploy') {
steps {
sh 'export GPG_TTY=$(tty) ./mvnw -Dskip-Tests=true -P release -B deploy'
sh 'export GPG_TTY="$(tty)" ./mvnw -Dskip-Tests=true -P release -B deploy'
}
}
}