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

Loading…
Cancel
Save