Skip to content

Commit

Permalink
fixes minor transpositiion in example for new bazel.getTargetOutput (#…
Browse files Browse the repository at this point in the history
…278)

* fixes minor transpositiion in example for new bazel.getTargetOutput

* Fix in CHANGELOG.md too

Co-authored-by: John Firebaugh <[email protected]>
  • Loading branch information
dgiacomo and jfirebaugh authored Sep 15, 2022
1 parent 4058437 commit a0101da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@

Then define a command input variable:

"inputs" [
"inputs": [
{
"id": "binaryOutputLocation",
"type": "command",
"command": "bazel.getOutputTarget",
"command": "bazel.getTargetOutput",
"args": ["//my/binary:target"],
}
]
Expand Down
4 changes: 2 additions & 2 deletions src/extension/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -411,11 +411,11 @@ async function bazelCopyTargetToClipboard(
*
* Then define a command input variable:
*
* "inputs" [
* "inputs": [
* {
* "id": "binaryOutputLocation",
* "type": "command",
* "command": "bazel.getOutputTarget",
* "command": "bazel.getTargetOutput",
* "args": ["//my/binary:target"],
* }
* ]
Expand Down

0 comments on commit a0101da

Please sign in to comment.