tup-ext: move makecmd here

This commit is contained in:
Christopher Monsanto
2020-05-01 02:45:05 -04:00
parent cd72b55c61
commit 037f276760
2 changed files with 5 additions and 3 deletions

View File

@@ -24,6 +24,4 @@ function compresspng(filename, opts)
return cmds
end
function makecmd(cmds)
return table.concat(flatten(cmds), " && ")
end

View File

@@ -33,3 +33,7 @@ function symlink(input, output)
output
)
end
function makecmd(cmds)
return table.concat(flatten(cmds), " && ")
end