Skip to content

Commit

Permalink
_make scripts: include chmod +w over bazel-bin directory
Browse files Browse the repository at this point in the history
Signed-off-by: Pawel Czarnecki <[email protected]>
  • Loading branch information
lpawelcz authored and oharboe committed Feb 16, 2024
1 parent e320b06 commit 694fc36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openroad.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def build_openroad(
Label("//:make_script.template.sh"),
] +
all_sources,
cmd = "echo `cat $(location " + str(Label("//:make_script.template.sh")) + ")` " + " ".join(wrap_args(stage_args.get(stage, []))) + " \\\"$$\\@\\\" > $@",
cmd = "echo \"chmod -R +w . && \" `cat $(location " + str(Label("//:make_script.template.sh")) + ")` " + " ".join(wrap_args(stage_args.get(stage, []))) + " \\\"$$\\@\\\" > $@",
outs = ["logs/" + platform + "/%s/%s/make_script_%s.sh" % (output_folder_name, variant, stage)],
)
for stage in stages
Expand Down

0 comments on commit 694fc36

Please sign in to comment.