From 1002f2c7081e9b2e810830fa7a0b6bc7ac0138fd Mon Sep 17 00:00:00 2001 From: Christopher Monsanto Date: Sat, 2 May 2020 21:48:49 -0400 Subject: [PATCH] add newline to commands in makecmd makes it easier to do `tup refactor` --- util/tup-ext.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/tup-ext.lua b/util/tup-ext.lua index 2d28393a..0112c3d4 100644 --- a/util/tup-ext.lua +++ b/util/tup-ext.lua @@ -49,7 +49,7 @@ function makecmd(cmds) for newcmd in iter(flatten(cmds)) do newcmd = trim(newcmd) if cmd ~= "" then - cmd = cmd .. " && " + cmd = cmd .. " &&\n" end cmd = cmd .. newcmd end