diff options
author | Simon Steiner <ssteiner@apache.org> | 2019-10-24 10:00:51 +0000 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2019-10-24 10:00:51 +0000 |
commit | 60e970f7161a53f57fe6db660948c24c9f8f7060 (patch) | |
tree | 76ba66aa24e28cd956fad399fdb616500fbc76e6 | |
parent | 8c4f88f9156ca5767f1b6482e6317b31598536ba (diff) | |
download | xmlgraphics-fop-60e970f7161a53f57fe6db660948c24c9f8f7060.tar.gz xmlgraphics-fop-60e970f7161a53f57fe6db660948c24c9f8f7060.zip |
Hide password for signing
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1868865 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | fop/build.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fop/build.xml b/fop/build.xml index 3928f93ce..398879bb8 100644 --- a/fop/build.xml +++ b/fop/build.xml @@ -1303,7 +1303,9 @@ NOTE: </target> <target name="release-dist" depends="dist" description="Generates the distribution package and signs the release"> <property name="bin.suffix" value="bin"/> - <input message="Passphrase for your default private key (attention: passphrase will be echoed in clear text on the display!)" addproperty="pwd"/> + <input message="Passphrase for your default private key" addproperty="pwd"> + <handler classname="org.apache.tools.ant.input.SecureInputHandler" /> + </input> <antcall target="sha512"> <param name="sign.archive" value="${name}-${version}-src.zip"/> </antcall> |