aboutsummaryrefslogtreecommitdiffstats
path: root/utils.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2016-05-04 16:05:15 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2016-05-11 11:42:22 +0000
commit5ce67f34294d07df45e4d84ece278e820874461c (patch)
tree411acd55474463984102351cde27364a70f62a22 /utils.py
parent4dd806f26dff8ba3af01848b0a48d65cb1d2628d (diff)
pyside-setup: Print directory in run_process().
Change-Id: Iaa22b81c4e18e2490cedc547443a58680cd7764b Reviewed-by: Alexandru Croitor <alexandru.croitor@theqtcompany.com> Reviewed-by: Christian Tismer <tismer@stackless.com> Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils.py b/utils.py
index b8a40dd01..a24f562a6 100644
--- a/utils.py
+++ b/utils.py
@@ -341,8 +341,7 @@ def run_process(args, initial_env=None):
for line in lines:
log.info(line.rstrip('\r'))
return buffer
-
- _log("Running process: {0}".format(" ".join([(" " in x and '"{0}"'.format(x) or x) for x in args])))
+ _log("Running process in {0}: {1}".format(os.getcwd(), " ".join([(" " in x and '"{0}"'.format(x) or x) for x in args])))
if sys.platform != "win32":
try: