[gnome-continuous-yocto/gnomeostree-3.28-rocko: 1514/8267] bitbake: fetcher2/__init__: Print command in case of ExecutionError in runfetchcmd



commit 24905d3c2de8dc31092a47dc15a09019751b53c1
Author: Mario Domenech Goulart <mario goulart bmw-carit de>
Date:   Thu Jul 21 16:08:01 2016 +0200

    bitbake: fetcher2/__init__: Print command in case of ExecutionError in runfetchcmd
    
    (Bitbake rev: df7f4897c463a48c45514e2bcbd44cc7f86c4bb0)
    
    Signed-off-by: Mario Domenech Goulart <mario goulart bmw-carit de>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 bitbake/lib/bb/fetch2/__init__.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index e2ceca0..3eabba1 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -832,7 +832,7 @@ def runfetchcmd(cmd, d, quiet=False, cleanup=None, log=None):
             output = "output:\n%s" % e.stderr
         else:
             output = "no output"
-        error_message = "Fetch command failed with exit code %s, %s" % (e.exitcode, output)
+        error_message = "Fetch command %s failed with exit code %s, %s" % (e.command, e.exitcode, output)
     except bb.process.CmdError as e:
         error_message = "Fetch command %s could not be run:\n%s" % (e.command, e.msg)
     if not success:


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]