Skip to content

Commit 01cbdb7

Browse files
committed
fix(tasks): update screenshot refresh command to use Python interpreter
(cherry picked from commit 3e4121f)
1 parent 36f3b28 commit 01cbdb7

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.vscode/tasks.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,13 @@
576576
"label": "🖼️ Refresh doc screenshots",
577577
"detail": "Maintainer task: regenerate PNG screenshots under doc/images/ by launching DataLab for each language (fr + en). Commit the resulting diff in a dedicated 'docs: refresh screenshots' commit.",
578578
"type": "shell",
579-
"command": "scripts\\update_screenshots.bat",
579+
"command": "${command:python.interpreterPath}",
580+
"args": [
581+
"scripts/run_with_env.py",
582+
"cmd",
583+
"/c",
584+
"scripts\\update_screenshots.bat",
585+
],
580586
"options": {
581587
"cwd": "${workspaceFolder}",
582588
"env": {

0 commit comments

Comments
 (0)