diff options
author | Oliver Poignant <oliver@poignant.se> | 2017-01-06 00:37:01 +0100 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2017-01-06 00:37:01 +0100 |
commit | 165c7de625a8f59f32b6deeedc93632db4b7a750 (patch) | |
tree | 8bba1f78c4ca0ed81e9f019b0c872e098d9014d5 /gitautodeploy/wrappers/git.py | |
parent | 25e1d94b63b3905492a6a0fe9872b13db86033fc (diff) | |
download | Git-Auto-Deploy-165c7de625a8f59f32b6deeedc93632db4b7a750.zip Git-Auto-Deploy-165c7de625a8f59f32b6deeedc93632db4b7a750.tar.gz Git-Auto-Deploy-165c7de625a8f59f32b6deeedc93632db4b7a750.tar.bz2 |
Changed to SSL config and setup
Diffstat (limited to 'gitautodeploy/wrappers/git.py')
-rw-r--r-- | gitautodeploy/wrappers/git.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitautodeploy/wrappers/git.py b/gitautodeploy/wrappers/git.py index 1f7fe23..3b347d3 100644 --- a/gitautodeploy/wrappers/git.py +++ b/gitautodeploy/wrappers/git.py @@ -32,7 +32,7 @@ class GitWrapper(): # All commands need to success for command in commands: - res = ProcessWrapper().call(command, cwd=repo_config['path'], shell=True) + res = ProcessWrapper().call(command, cwd=repo_config['path'], shell=True, supressStderr=True) if res != 0: logger.error("Command '%s' failed with exit code %s" % (command, res)) @@ -76,7 +76,7 @@ class GitWrapper(): # All commands need to success for command in commands: - res = ProcessWrapper().call(command, cwd=repo_config['path'], shell=True) + res = ProcessWrapper().call(command, cwd=repo_config['path'], shell=True, supressStderr=True) if res != 0: logger.error("Command '%s' failed with exit code %s" % (command, res)) |