default to no concatenation

git-svn-id: file:///home/svn/framework3/trunk@10168 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
Joshua Drake
2010-08-27 17:16:44 +00:00
parent fbf64adf2a
commit a3a20ebb05
+6 -1
View File
@@ -127,6 +127,11 @@ class CmdStagerBase
new_cmds = []
line = ''
concat = cmd_concat_operator
# We cannot compress commands if there is no way to combine commands on
# a single line.
return cmds if not concat
cmds.each { |cmd|
# If this command will fit, concat it and move on.
@@ -162,7 +167,7 @@ class CmdStagerBase
# Can be overriden. For exmaple, use for unix use ";" instead
#
def cmd_concat_operator
""
nil
end
end