From: Tobias Ulmer Date: Fri, 3 Aug 2012 10:03:29 +0000 (+0200) Subject: Don't cat with nonexisting error object, fixes #999 X-Git-Tag: e2factory-2.3.13rc1~214 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=0ebbb0c736e135543c73982ac78c67d454cf30d4;p=e2factory.git Don't cat with nonexisting error object, fixes #999 Signed-off-by: Tobias Ulmer --- diff --git a/local/e2build.lua b/local/e2build.lua index 43c6fd6..9534583 100644 --- a/local/e2build.lua +++ b/local/e2build.lua @@ -1264,7 +1264,7 @@ function deploy(info, r, return_flags) local rc, re = info.cache:push_file(sourcefile, server, location1, cache_flags) if not rc then - return false, e:cat(re) + return false, re end end return true