This is an automated email from the ASF dual-hosted git repository.

jtulach pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new bdc4af3  Ensure the NBMs can be signed even if the sources are checked 
out in a directory with spaces in its name.
     new 3b41f3d  Merge pull request #1287 from jlahoda/build-in-dir-with-space
bdc4af3 is described below

commit bdc4af3b427575379b91dd316afa8df1ac0f673f
Author: Jan Lahoda <jlah...@netbeans.org>
AuthorDate: Sat Jun 8 08:18:49 2019 +0200

    Ensure the NBMs can be signed even if the sources are checked out in a 
directory with spaces in its name.
---
 nb/updatecenters/build.xml | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/nb/updatecenters/build.xml b/nb/updatecenters/build.xml
index 75a5185..5145b3d 100644
--- a/nb/updatecenters/build.xml
+++ b/nb/updatecenters/build.xml
@@ -43,18 +43,23 @@
       </subant>
       <exec executable="${java.home}/bin/keytool" failonerror="true">
           <arg value="-exportcert"/>
-          <arg line="-keystore ${netbeans.bundled.ks}"/>
+          <arg value="-keystore" />
+          <arg value="${netbeans.bundled.ks}"/>
           <arg line="-alias netbeans-bundled"/>
-          <arg line="-storepass ${netbeans.bundled.ks}"/>
-          <arg line="-file ${netbeans.bundled.cert}"/>
+          <arg value="-storepass" />
+          <arg value="${netbeans.bundled.ks}"/>
+          <arg value="-file" />
+          <arg value="${netbeans.bundled.cert}"/>
       </exec>
       <copy overwrite="true" file="ide.ks" tofile="${build.dir}/ide.ks"/>
       <exec executable="${java.home}/bin/keytool" failonerror="true">
           <arg value="-importcert"/>
           <arg value="-noprompt"/>
-          <arg line="-keystore ${build.dir}/ide.ks"/>
+          <arg value="-keystore" />
+          <arg value="${build.dir}/ide.ks"/>
           <arg line="-storepass open4all"/>
-          <arg line="-file ${netbeans.bundled.cert}"/>
+          <arg value="-file" />
+          <arg value="${netbeans.bundled.cert}"/>
       </exec>
       <delete file="${netbeans.bundled.ks}"/>
       <delete file="${netbeans.bundled.cert}"/>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to