aboutsummaryrefslogtreecommitdiff
path: root/commands/installable.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/installable.js')
-rw-r--r--commands/installable.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/commands/installable.js b/commands/installable.js
index ee4a0f0..6e76115 100644
--- a/commands/installable.js
+++ b/commands/installable.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) }
}