浏览代码

Pass as separate params, not 1.

tags/0.6.3m1rc3
Shane Mc Cormack 15 年前
父节点
当前提交
08da1d038a
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 5
    2
      build-installer.xml

+ 5
- 2
build-installer.xml 查看文件

@@ -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">

正在加载...
取消
保存