Browse Source

Pass as separate params, not 1.

tags/0.6.3m1rc3
Shane Mc Cormack 15 years ago
parent
commit
08da1d038a
1 changed files with 5 additions and 2 deletions
  1. 5
    2
      build-installer.xml

+ 5
- 2
build-installer.xml View File

@@ -21,7 +21,8 @@
21 21
     <target name="-installer-build-stable" if="has.bash">
22 22
         <exec executable="/bin/bash" dir="installer" resultproperty="installer.result">
23 23
             <arg value="release.sh"/>
24
-            <arg value="-c -t"/>
24
+            <arg value="-t"/>
25
+            <arg value="-c"/>
25 26
         </exec>
26 27
 
27 28
         <condition property="installer.success">
@@ -37,7 +38,9 @@
37 38
     <target name="-installer-build-unstable" if="has.bash">
38 39
         <exec executable="/bin/bash" dir="installer" resultproperty="installer.result">
39 40
             <arg value="release.sh"/>
40
-            <arg value="-c UNSTABLE -t"/>
41
+            <arg value="-t"/>
42
+            <arg value="-c"/>
43
+            <arg value="UNSTABLE"/>
41 44
         </exec>
42 45
 
43 46
         <condition property="installer.success">

Loading…
Cancel
Save