Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 303fa00

Browse files
committed
fix: ibmcloud plugin list does not list unofficial plugins
Fixes #4339 also removes superfluous debug output from kubectl fetch-file
1 parent 233aae6 commit 303fa00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/plugin-ibmcloud/plugin/src/controller/list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ async function doLs(args: Arguments<ListOptions>): Promise<Table> {
4242
// Notes: the filter reduces allInstalled down to those installed in
4343
// the specified repo
4444
const rowData = Object.keys(allInstalled)
45-
.filter(installedName => available.find(({ name: availableName }) => availableName === installedName))
45+
// .filter(installedName => available.find(({ name: availableName }) => availableName === installedName))
4646
.map(key => {
4747
const { Name: name, Aliases, Version } = allInstalled[key]
4848

plugins/plugin-kubectl/src/lib/util/fetch-file.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ async function needle({ qexec }: REPL, method: 'get', url: string): Promise<{ st
9191
})
9292

9393
response.on('data', chunk => {
94-
debug('got chunk', chunk.toString())
94+
// debug('got chunk', chunk.toString())
9595
body += chunk.toString()
9696
})
9797
})

0 commit comments

Comments
 (0)