From ec62f654e0a777b39f13816dc1a85763348016a0 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sat, 18 Sep 2021 07:41:02 -0500 Subject: [PATCH] fix: change the tool installation order --- src/main.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.ts b/src/main.ts index bedffec8..b89da214 100644 --- a/src/main.ts +++ b/src/main.ts @@ -42,20 +42,20 @@ const setups = { /** The tools that can be installed */ const tools: Array = [ + "choco", + "brew", + "python", "cmake", "ninja", - "python", "conan", "meson", "gcovr", "opencppcoverage", - "llvm", - "gcc", - "choco", - "brew", "ccache", "doxygen", "cppcheck", + "llvm", + "gcc", "msvc", ]