Skip to content

Commit 57864a8

Browse files
committed
[infra] Fix another undeclared variable in debian-package scripts
[email protected] Change-Id: Ibb4bcbb85c22ec348cb4a94f8408defe1eefa8b5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/170682 Reviewed-by: Alexander Thomas <[email protected]>
1 parent cd970af commit 57864a8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/bots/linux_distribution_support.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ def CreateDartTestFile(tempdir):
4444
def Run(command):
4545
print "Running: %s" % ' '.join(command)
4646
sys.stdout.flush()
47-
no_color_env['TERM'] = 'nocolor'
48-
47+
no_color_env = {'TERM': 'nocolor'}
4948
exit_code = subprocess.call(command, env=no_color_env)
5049
if exit_code != 0:
5150
raise OSError(exit_code)

0 commit comments

Comments
 (0)