diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2019-04-15 13:42:49 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2019-04-15 13:42:49 +0200 |
| commit | 300476f606eee5a576453dd3ff9503fdc42fe133 (patch) | |
| tree | 516f2f7d161f7dd205175692639e12aafbf5398b /gui/scripts | |
| parent | 9527984c82d175f40580c34d45402ea409eae10e (diff) | |
| download | mullvadvpn-300476f606eee5a576453dd3ff9503fdc42fe133.tar.xz mullvadvpn-300476f606eee5a576453dd3ff9503fdc42fe133.zip | |
Log each command we run
Diffstat (limited to 'gui/scripts')
| -rw-r--r-- | gui/scripts/integrate-into-app.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/scripts/integrate-into-app.py b/gui/scripts/integrate-into-app.py index 9a853573c7..18725fac80 100644 --- a/gui/scripts/integrate-into-app.py +++ b/gui/scripts/integrate-into-app.py @@ -38,6 +38,9 @@ def remove_common_prefix(source, destination): def run_program(args): p = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE) + + print "Run: {}".format(' '.join(args)) + errors = p.communicate()[1] return (p.returncode, errors) |
