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

fix typos

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2022-02-25 06:50:48 +02:00
parent ed0bd0b791
commit a2c168a7d4

View File

@ -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<void>((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);
});