From 10416ace36daa6d9b12cace456857ec4e85b386c Mon Sep 17 00:00:00 2001 From: Ivan Trubach Date: Wed, 18 Dec 2019 20:03:39 +0300 Subject: [PATCH] Fix typo --- src/installer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer.ts b/src/installer.ts index cbdffa8..de3c8a3 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -186,7 +186,7 @@ function getFileName(version: string): string { const arch: string = arches[osArch] || arches['default']; let ext: string; if (version == 'tip') { - // Git work tree for tip builds does not have an externsion. + // Git work tree for tip builds does not have an extension. ext = ''; } else if (osPlat == 'win32') { ext = '.zip';