From 9cb1ccaeafb02c48d1aa87e746b1d2716454485f Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Fri, 12 Apr 2013 17:36:29 +0200 Subject: added some verbose output options. TODO: make commandline option --- src/luarocks/fs/win32/tools.lua | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/luarocks/fs/win32/tools.lua b/src/luarocks/fs/win32/tools.lua index 3e7ebd32..e32b8280 100644 --- a/src/luarocks/fs/win32/tools.lua +++ b/src/luarocks/fs/win32/tools.lua @@ -4,14 +4,23 @@ -- used by this module. module("luarocks.fs.win32.tools", package.seeall) + +--uncomment following line to make executed commands and results visible +--TODO: make commandline option +--local verbose = true + local fs = require("luarocks.fs") local dir = require("luarocks.dir") local cfg = require("luarocks.cfg") local dir_stack = {} - + local vars = cfg.variables +local function pack(...) + return { n = select("#", ...), ... } +end + --- Strip the last extension of a filename. -- Example: "foo.tar.gz" becomes "foo.tar". -- If filename has no dots, returns it unchanged. @@ -51,8 +60,17 @@ end -- @return boolean: true if command succeeds (status code 0), false -- otherwise. function execute_string(cmd) - local code = os.execute(command_at(fs.current_dir(), cmd)) - if code == 0 or code == true then + cmd = command_at(fs.current_dir(), cmd) + if verbose then print("Executing: "..tostring(cmd)) end + local code = pack(os.execute(cmd)) + if verbose then + print("Results: "..tostring(code.n)) + for i = 1,code.n do + print(" "..tostring(i).." ("..type(code[i]).."): "..tostring(code[i])) + end + print() + end + if code[1] == 0 or code[1] == true then return true else return false @@ -133,7 +151,8 @@ end -- plus an error message. function copy_contents(src, dest) assert(src and dest) - if fs.execute_string(fs.quiet(vars.CP.." -a "..src.."\\*.* "..fs.Q(dest))) then + if fs.execute_string(fs.quiet("xcopy "..src.."\\*.* "..fs.Q(dest).." /S/E/Y")) then + --if fs.execute_string(fs.quiet(vars.CP.." -a "..src.."\\*.* "..fs.Q(dest))) then return true else return false, "Failed copying "..src.." to "..dest -- cgit v1.2.3-55-g6feb