From 07d8d567deb1dd1383a1e59a0af2a9be998b7883 Mon Sep 17 00:00:00 2001 From: Lauri Nevala Date: Wed, 15 Sep 2021 16:36:19 +0300 Subject: [PATCH] Fix fallback to bundled kubectl (#3812) --- src/main/kubectl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kubectl.ts b/src/main/kubectl.ts index fbfd044dab..4695e8272e 100644 --- a/src/main/kubectl.ts +++ b/src/main/kubectl.ts @@ -275,7 +275,7 @@ export class Kubectl { return false; }); - isValid = !await this.checkBinary(this.path, false); + isValid = await this.checkBinary(this.path, false); } if (!isValid) {