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 0809796 commit f6d04a0Copy full SHA for f6d04a0
utils/build-script
@@ -1351,10 +1351,11 @@ def main_normal():
1351
# Create build directory.
1352
shell.makedirs(invocation.workspace.build_root)
1353
1354
- # Create .build_script_log.
1355
- build_script_log = os.path.join(invocation.workspace.build_root,
1356
- ".build_script_log")
1357
- 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")
1358
+ open(build_script_log, 'w').close()
1359
1360
# Build ninja if required, which will update the toolchain.
1361
if args.build_ninja:
0 commit comments