From 4159b2c0fab5e3f273854d064196aecbb7434520 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Sun, 14 Aug 2011 11:24:58 -0300 Subject: Be a bit more verbose in type='command', to act more like type='make'. --- src/luarocks/build/command.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/luarocks/build/command.lua b/src/luarocks/build/command.lua index 72d3de7f..aeec0da7 100644 --- a/src/luarocks/build/command.lua +++ b/src/luarocks/build/command.lua @@ -17,11 +17,13 @@ function run(rockspec) util.variable_substitutions(build, rockspec.variables) if build.build_command then + util.printout(build.build_command) if not fs.execute(build.build_command) then return nil, "Failed building." end end if build.install_command then + util.printout(build.install_command) if not fs.execute(build.install_command) then return nil, "Failed installing." end -- cgit v1.2.3-55-g6feb