Skip to content

Commit b6f46b1

Browse files
committed
Fix paths in documentation build and open commands in tasks.json
1 parent e937c92 commit b6f46b1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.vscode/tasks.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -296,14 +296,14 @@
296296
"-m",
297297
"sphinx",
298298
"build",
299-
".",
300-
"../build/doc",
299+
"doc",
300+
"build/doc",
301301
"-b",
302302
"html",
303303
"-W"
304304
],
305305
"options": {
306-
"cwd": "${workspaceFolder}/doc",
306+
"cwd": "${workspaceFolder}",
307307
},
308308
"group": {
309309
"kind": "build",
@@ -327,16 +327,16 @@
327327
"label": "🌐 Open HTML doc",
328328
"type": "shell",
329329
"windows": {
330-
"command": "start ../build/doc/index.html"
330+
"command": "start build/doc/index.html"
331331
},
332332
"linux": {
333-
"command": "xdg-open ../build/doc/index.html"
333+
"command": "xdg-open build/doc/index.html"
334334
},
335335
"osx": {
336-
"command": "open ../build/doc/index.html"
336+
"command": "open build/doc/index.html"
337337
},
338338
"options": {
339-
"cwd": "${workspaceFolder}/doc"
339+
"cwd": "${workspaceFolder}"
340340
},
341341
"problemMatcher": []
342342
},

0 commit comments

Comments
 (0)