summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Hesketh <josh@nitrotech.org>2015-06-05 20:14:38 +1000
committerJoshua Hesketh <josh@nitrotech.org>2015-06-05 20:14:38 +1000
commitf265245ccee20cb34e203ca238827e264bb441e0 (patch)
treefd50418b15d2e1f7134963d302dae195af4a13d4
parent326fd8a230286e9ddac2c0611f71ae54149d2b20 (diff)
downloadturbo-hipster-f265245ccee20cb34e203ca238827e264bb441e0.tar.gz
Fix envvars to be strings
Change-Id: Ia777482a44cbcc3199fb71cd0712cd498e652730
-rw-r--r--turbo_hipster/lib/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/turbo_hipster/lib/models.py b/turbo_hipster/lib/models.py
index 39d8b89..3987733 100644
--- a/turbo_hipster/lib/models.py
+++ b/turbo_hipster/lib/models.py
@@ -320,7 +320,7 @@ class ShellTask(Task):
return_code = 1
while return_code != 0:
tries += 1
- env.update({'GIT_CURL_VERBOSE': 1, 'GIT_TRACE': 1})
+ env.update({'GIT_CURL_VERBOSE': '1', 'GIT_TRACE': '1'})
return_code = utils.execute_to_log(cmd, self.git_prep_log,
env=env, cwd=local_path)
if tries == 2: