Skip to content

Commit

Permalink
openroad: Mark executable scripts accordingly
Browse files Browse the repository at this point in the history
  • Loading branch information
hovind authored and oharboe committed Jun 6, 2024
1 parent e7181fd commit aa9650d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions openroad.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,7 @@ def build_openroad(
# Local flow scripts
native.genrule(
name = target_name_stage + "_make_local_script",
executable = True,
tools = [Label("//:orfs")],
srcs = [design_config, stage_config, make_pattern],
cmd = "cat <<EOF > $@ \n#!/bin/bash\n" + local_entrypoint_cmd + " \\$$@\nEOF",
Expand All @@ -793,6 +794,7 @@ def build_openroad(
# Docker flow scripts
native.genrule(
name = target_name_stage + "_make_docker_script",
executable = True,
tools = [Label("//:docker_shell")],
srcs = [design_config, stage_config, make_pattern],
cmd = "cat <<EOF > $@ \n#!/bin/bash\n" + docker_entrypoint_cmd + " \\$$@\nEOF",
Expand Down

0 comments on commit aa9650d

Please sign in to comment.