From f32c7821ba040bf587d313773a694a0d82bae715 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 11 Feb 2021 16:14:57 -0800 Subject: [PATCH] Change expected mac release asset name osx -> macos --- cli/npm/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/npm/install.js b/cli/npm/install.js index 9350f682..875c38c0 100755 --- a/cli/npm/install.js +++ b/cli/npm/install.js @@ -7,7 +7,7 @@ const packageJSON = require('./package.json'); // Determine the URL of the file. const platformName = { - 'darwin': 'osx', + 'darwin': 'macos', 'linux': 'linux', 'win32': 'windows' }[process.platform];