fix: change the tool installation order

This commit is contained in:
Amin Yahyaabadi 2021-09-18 07:41:02 -05:00
parent d941917c7a
commit ec62f654e0
1 changed files with 5 additions and 5 deletions

View File

@ -42,20 +42,20 @@ const setups = {
/** The tools that can be installed */ /** The tools that can be installed */
const tools: Array<keyof typeof setups> = [ const tools: Array<keyof typeof setups> = [
"choco",
"brew",
"python",
"cmake", "cmake",
"ninja", "ninja",
"python",
"conan", "conan",
"meson", "meson",
"gcovr", "gcovr",
"opencppcoverage", "opencppcoverage",
"llvm",
"gcc",
"choco",
"brew",
"ccache", "ccache",
"doxygen", "doxygen",
"cppcheck", "cppcheck",
"llvm",
"gcc",
"msvc", "msvc",
] ]