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 a4a081e commit 39b048aCopy full SHA for 39b048a
utils/build-script
@@ -1378,10 +1378,11 @@ def main_normal():
1378
# Create build directory.
1379
shell.makedirs(invocation.workspace.build_root)
1380
1381
- # Create .build_script_log.
1382
- build_script_log = os.path.join(invocation.workspace.build_root,
1383
- ".build_script_log")
1384
- open(build_script_log, 'w').close()
+ # Create .build_script_log
+ if not args.dry_run:
+ build_script_log = os.path.join(invocation.workspace.build_root,
+ ".build_script_log")
1385
+ open(build_script_log, 'w').close()
1386
1387
# Build ninja if required, which will update the toolchain.
1388
if args.build_ninja:
0 commit comments