From: Tobias Ulmer Date: Tue, 19 Nov 2013 18:57:36 +0000 (+0100) Subject: e2-fetch-project: Remove shell quoting X-Git-Tag: e2factory-2.3.15rc1~362 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=36a5c11a995e36000063be6cde9f83e2e3d1cd52;p=e2factory.git e2-fetch-project: Remove shell quoting Signed-off-by: Tobias Ulmer --- diff --git a/global/e2-fetch-project.lua b/global/e2-fetch-project.lua index 8a3f390..cf5496b 100644 --- a/global/e2-fetch-project.lua +++ b/global/e2-fetch-project.lua @@ -218,8 +218,8 @@ local function e2_fetch_project(arg) end -- call e2-install-e2 - local e2_install_e2 = string.format("%s %s", e2lib.shquote(buildconfig.LUA), - e2lib.shquote(e2lib.join(buildconfig.TOOLDIR, "e2-install-e2"))) + local e2_install_e2 = + { buildconfig.LUA, e2lib.join(buildconfig.TOOLDIR, "e2-install-e2") } rc, re = e2lib.callcmd_log(e2_install_e2) if not rc or rc ~= 0 then local e = err.new("installing local e2 failed")