We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7afb475 commit 74b0bf5Copy full SHA for 74b0bf5
utils/build-script
@@ -105,8 +105,9 @@ def initialize_runtime_environment():
105
'WATCHOS_DEPLOYMENT_TARGET']:
106
os.environ.pop(v, None)
107
108
- # Set NINJA_STATUS to format ninja output
109
- os.environ['NINJA_STATUS'] = '[%f/%t][%p][%es] '
+ # Provide a default NINJA_STATUS to format ninja output.
+ if 'NINJA_STATUS' not in os.environ:
110
+ os.environ['NINJA_STATUS'] = '[%f/%t][%p][%es] '
111
112
113
class JSONDumper(json.JSONEncoder):
0 commit comments