File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,20 +7,20 @@ import { setupChocoPack } from "../utils/setup/setupChocoPack"
7
7
export async function setupDoxygen ( version : string | undefined , _setupCppDir : string , _arch : string ) {
8
8
switch ( process . platform ) {
9
9
case "win32" : {
10
- await setupChocoPack ( "graphviz" , version )
11
10
await setupChocoPack ( "doxygen.install" , version )
11
+ await setupChocoPack ( "graphviz" , version )
12
12
addPath ( "C:/Program Files/Graphviz/bin" )
13
13
const binDir = "C:/Program Files/doxygen/bin"
14
14
addPath ( binDir )
15
15
return { binDir }
16
16
}
17
17
case "darwin" : {
18
- setupBrewPack ( "graphviz " , version )
19
- return setupBrewPack ( "doxygen " , version )
18
+ setupBrewPack ( "doxygen " , version )
19
+ return setupBrewPack ( "graphviz " , version )
20
20
}
21
21
case "linux" : {
22
- await setupAptPack ( "graphviz " , version )
23
- return setupAptPack ( "doxygen " , version )
22
+ await setupAptPack ( "doxygen " , version )
23
+ return setupAptPack ( "graphviz " , version )
24
24
}
25
25
default : {
26
26
throw new Error ( `Unsupported platform` )
You can’t perform that action at this time.
0 commit comments