From a0101daa091ad61b714e5bce0e90f72bf03c0e7d Mon Sep 17 00:00:00 2001 From: dgiacomo Date: Thu, 15 Sep 2022 10:04:36 -0700 Subject: [PATCH] fixes minor transpositiion in example for new bazel.getTargetOutput (#278) * fixes minor transpositiion in example for new bazel.getTargetOutput * Fix in CHANGELOG.md too Co-authored-by: John Firebaugh --- CHANGELOG.md | 4 ++-- src/extension/extension.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6f15751..f642b766 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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"], } ] diff --git a/src/extension/extension.ts b/src/extension/extension.ts index da7a27ec..f6d7d8dd 100644 --- a/src/extension/extension.ts +++ b/src/extension/extension.ts @@ -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"], * } * ]