Removed echo off in VS rules prop generator

This commit is contained in:
Sam Surtees 2017-04-27 20:47:33 +10:00
parent 6cc2514737
commit 43da317fe8
2 changed files with 2 additions and 3 deletions

View File

@ -152,7 +152,7 @@
if buildcommands and #buildcommands > 0 then
local cmds = os.translateCommands(buildcommands, p.WINDOWS)
cmds = table.concat(cmds, p.eol())
p.x('<CommandLineTemplate>@echo off\n%s</CommandLineTemplate>', cmds)
p.x('<CommandLineTemplate>%s</CommandLineTemplate>', cmds)
end
end

View File

@ -51,8 +51,7 @@
m.commandLineTemplates(r)
test.capture [[
<CommandLineTemplate>@echo off
package-example-compiler.exe [output_path] "%(Identity)"</CommandLineTemplate>
<CommandLineTemplate>package-example-compiler.exe [output_path] "%(Identity)"</CommandLineTemplate>
]]
end