Fixed variable expansion bug

This commit is contained in:
Sun Knudsen 2022-03-19 16:52:49 -04:00
parent 0c42c712e3
commit ae81f2fa56
No known key found for this signature in database
GPG Key ID: 02C43AD072D57783

10
.vscode/tasks.json vendored
View File

@ -4,7 +4,7 @@
{ {
"type": "shell", "type": "shell",
"label": "Organize steps", "label": "Organize steps",
"command": "node ./tasks/organize-steps.js \"${file}\"", "command": "node ./tasks/organize-steps.js '${file}'",
"presentation": { "presentation": {
"reveal": "silent" "reveal": "silent"
}, },
@ -13,7 +13,7 @@
{ {
"type": "shell", "type": "shell",
"label": "Preview markdown", "label": "Preview markdown",
"command": "node ./tasks/preview-markdown.js \"${relativeFile}\"", "command": "node ./tasks/preview-markdown.js '${relativeFile}\"",
"presentation": { "presentation": {
"reveal": "silent" "reveal": "silent"
}, },
@ -22,7 +22,7 @@
{ {
"type": "shell", "type": "shell",
"label": "Preview markdown (using reverse proxy)", "label": "Preview markdown (using reverse proxy)",
"command": "node ./tasks/preview-markdown.js \"${relativeFile}\" use-proxy", "command": "node ./tasks/preview-markdown.js '${relativeFile}' use-proxy",
"presentation": { "presentation": {
"reveal": "silent" "reveal": "silent"
}, },
@ -31,7 +31,7 @@
{ {
"type": "shell", "type": "shell",
"label": "Proxify link", "label": "Proxify link",
"command": "node ./tasks/proxify-link.js \"${selectedText}\"", "command": "node ./tasks/proxify-link.js '${selectedText}'",
"presentation": { "presentation": {
"reveal": "silent" "reveal": "silent"
}, },
@ -40,7 +40,7 @@
{ {
"type": "shell", "type": "shell",
"label": "Insert YouTube player", "label": "Insert YouTube player",
"command": "node ./tasks/insert-youtube-player.js \"${file}\" \"${lineNumber}\" \"${input:youtubeWatchUrl}\"", "command": "node ./tasks/insert-youtube-player.js '${file}' '${lineNumber}' '${input:youtubeWatchUrl}'",
"presentation": { "presentation": {
"reveal": "silent" "reveal": "silent"
}, },