summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: