Skip to content

Commit 27e0114

Browse files
committed
Turns out, if you actually pass the environment, it doesn't like it because 0 isn't a string!
1 parent 00b9591 commit 27e0114

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/update_checkout/update_checkout/update_checkout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def obtain_additional_swift_sources(pool_args):
261261
skip_history, skip_tags, skip_repository_list) = pool_args
262262

263263
env = dict(os.environ)
264-
env.update({'GIT_TERMINAL_PROMPT': 0})
264+
env.update({'GIT_TERMINAL_PROMPT': '0'})
265265

266266
with shell.pushd(args.source_root, dry_run=False, echo=False):
267267

0 commit comments

Comments
 (0)