Fix DOS touch token replacement to work when file is in a different directory

This commit is contained in:
Jason Perkins 2014-12-03 16:23:16 -05:00
parent c613ea9a83
commit b9fe7a510f

View File

@ -492,7 +492,7 @@
end,
touch = function(v)
v = path.translate(v)
return string.format("type nul >> %s && copy /b %s +,,", v, v)
return string.format("type nul >> %s && copy /b %s+,, %s", v, v, v)
end,
}
}