From a2c168a7d4285eebec6f5c0737006b63c2089ee6 Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Fri, 25 Feb 2022 06:50:48 +0200 Subject: [PATCH] fix typos Signed-off-by: Jari Kolehmainen --- build/download_k8s_proxy.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/download_k8s_proxy.ts b/build/download_k8s_proxy.ts index 7e891c394c..891f4f573c 100644 --- a/build/download_k8s_proxy.ts +++ b/build/download_k8s_proxy.ts @@ -42,7 +42,7 @@ class K8sProxyDownloader { const file = fs.createWriteStream(this.path); - console.log(`Downloading lens-k8s-version ${this.version} from ${this.url} to ${this.path}`); + console.log(`Downloading lens-k8s-proxy ${this.version} from ${this.url} to ${this.path}`); const requestOpts: request.UriOptions & request.CoreOptions = { uri: this.url, gzip: true, @@ -51,7 +51,7 @@ class K8sProxyDownloader { const stream = request(requestOpts); stream.on("complete", () => { - console.log("lens-k8s-version binary download finished"); + console.log("lens-k8s-proxy binary download finished"); file.end(noop); }); @@ -63,7 +63,7 @@ class K8sProxyDownloader { return new Promise((resolve, reject) => { file.on("close", () => { - console.log("lens-k8s-version binary download closed"); + console.log("lens-k8s-proxy binary download closed"); fs.chmod(this.path, 0o755, (err) => { if (err) reject(err); });