1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix Kubectl.checkBinary() to be compatible with kubectl@1.24 (#5415)

This commit is contained in:
Sebastian Malton 2022-05-18 11:34:00 -07:00
parent d23f4018c8
commit 539dfc8e26

View File

@ -156,7 +156,7 @@ export class Kubectl {
try { try {
const args = [ const args = [
"version", "version",
"--client", "true", "--client",
"--output", "json", "--output", "json",
]; ];
const { stdout } = await promiseExecFile(path, args); const { stdout } = await promiseExecFile(path, args);