From: Steven Barth Date: Fri, 11 Apr 2008 19:53:09 +0000 (+0000) Subject: * Supress output of ffluci-flash X-Git-Tag: 0.8.0~1133 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=064aa38fc46715f98d5567174374ae5b46c3a252;p=oweals%2Fluci.git * Supress output of ffluci-flash --- diff --git a/core/src/ffluci/sys.lua b/core/src/ffluci/sys.lua index 5b3f7a3c9..334768c0e 100644 --- a/core/src/ffluci/sys.lua +++ b/core/src/ffluci/sys.lua @@ -58,7 +58,7 @@ function flash(image, kpattern) if kpattern then cmd = cmd .. "-k '" .. kpattern:gsub("'", "") .. "' " end - cmd = cmd .. "'" .. image:gsub("'", "") .. "'" + cmd = cmd .. "'" .. image:gsub("'", "") .. "' >/dev/null 2>&1" return os.execute(cmd) end