From 38e7fbe2f99a5d0b6a69e54ab3af7ebf451e8f4f Mon Sep 17 00:00:00 2001 From: Minteck Date: Sat, 12 Feb 2022 12:09:34 +0100 Subject: Update --- commands/list.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'commands/list.js') diff --git a/commands/list.js b/commands/list.js index c40cc23..9dc0020 100644 --- a/commands/list.js +++ b/commands/list.js @@ -40,17 +40,17 @@ module.exports = async () => { } if (pack.platforms.windows === 2 && pack.platforms.linux === 2 && pack.platforms.mac === 2) { - platforms[pack.id] = c.blue("all"); + platforms[pack.id] = c.cyan("all"); } else if (pack.platforms.windows === 1 && pack.platforms.linux === 1 && pack.platforms.mac === 1) { platforms[pack.id] = c.yellow("all"); } else { platforms[pack.id] = ""; if (pack.platforms.windows === 1) { platforms[pack.id] += c.yellow("win32") + "," } - if (pack.platforms.windows === 2) { platforms[pack.id] += c.blue("win32") + "," } + if (pack.platforms.windows === 2) { platforms[pack.id] += c.cyan("win32") + "," } if (pack.platforms.linux === 1) { platforms[pack.id] += c.yellow("linux") + "," } - if (pack.platforms.linux === 2) { platforms[pack.id] += c.blue("linux") + "," } - if (pack.platforms.mac === 1) { platforms[pack.id] += c.yellow("darwin") + "," } - if (pack.platforms.mac === 2) { platforms[pack.id] += c.blue("darwin") + "," } + if (pack.platforms.linux === 2) { platforms[pack.id] += c.cyan("linux") + "," } + if (pack.platforms.mac === 1) { platforms[pack.id] += c.yellow("macos") + "," } + if (pack.platforms.mac === 2) { platforms[pack.id] += c.cyan("macos") + "," } if (platforms[pack.id].endsWith(",")) { platforms[pack.id] = platforms[pack.id].substring(0, platforms[pack.id].length - 1) } } -- cgit