diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2019-04-15 13:50:45 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2019-04-15 13:50:45 +0200 |
| commit | b7fa77843763122e5f0355d606e265e23e3a97b6 (patch) | |
| tree | 516f2f7d161f7dd205175692639e12aafbf5398b /gui/scripts | |
| parent | f94a9582ee6385cbb98f93a8cd7fb1213f1521e4 (diff) | |
| parent | 300476f606eee5a576453dd3ff9503fdc42fe133 (diff) | |
| download | mullvadvpn-b7fa77843763122e5f0355d606e265e23e3a97b6.tar.xz mullvadvpn-b7fa77843763122e5f0355d606e265e23e3a97b6.zip | |
Merge branch 'update-relay-locations-pot'
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) |
