From 115fbd7d53062fdc96ade0cf3a1b7eea13fdb867 Mon Sep 17 00:00:00 2001 From: Steve Kallestad Date: Fri, 6 Jan 2023 13:47:19 -0800 Subject: [PATCH] Update helpers.ts updated faulty quotes. --- src/helpers.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/helpers.ts b/src/helpers.ts index d882155..be1da93 100644 --- a/src/helpers.ts +++ b/src/helpers.ts @@ -13,14 +13,14 @@ export function getkubectlDownloadURL(version: string, arch: string): string { switch (os.type()) { case 'Linux': return util.format( - 'https://dl.k8s.io/release/v%s/bin/linux/%s/kubectl`, + 'https://dl.k8s.io/release/v%s/bin/linux/%s/kubectl', version, arch ) case 'Darwin': return util.format( - 'https://dl.k8s.io/release/v%s/bin/darwin/%s/kubectl`, + 'https://dl.k8s.io/release/v%s/bin/darwin/%s/kubectl', version, arch ) @@ -28,7 +28,7 @@ export function getkubectlDownloadURL(version: string, arch: string): string { case 'Windows_NT': default: return util.format( - 'https://dl.k8s.io/release/v%s/bin/windows/%s/kubectl.exe`, + 'https://dl.k8s.io/release/v%s/bin/windows/%s/kubectl.exe', version, arch )