Skip to content

Commit

Permalink
Add bash to list of tools for GH CLI (pantsbuild#19484)
Browse files Browse the repository at this point in the history
Techincally this shouldn't be needed as we know the script will be run
with bash, but otherwise there's an error.

(This worked when I tested it, but then `shellcheck` wanted me to add
the she-bang 😒)
  • Loading branch information
thejcannon authored Jul 17, 2023
1 parent a52b58d commit 17206c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/tools/gh/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ shell_source(
shell_command(
name="extracted-gh",
command="./extract.sh",
tools=["tar", "gzip", "zip", "mv", "mkdir"],
tools=["tar", "gzip", "zip", "mv", "mkdir", "bash"],
execution_dependencies=[":downloaded-gh", ":extract.sh"],
output_directories=["gh"],
)
Expand Down

0 comments on commit 17206c1

Please sign in to comment.