mirror of
https://github.com/sunknudsen/privacy-guides.git
synced 2025-02-23 09:13:56 +00:00
Fixed variable expansion bug
This commit is contained in:
parent
0c42c712e3
commit
ae81f2fa56
10
.vscode/tasks.json
vendored
10
.vscode/tasks.json
vendored
@ -4,7 +4,7 @@
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Organize steps",
|
||||
"command": "node ./tasks/organize-steps.js \"${file}\"",
|
||||
"command": "node ./tasks/organize-steps.js '${file}'",
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
@ -13,7 +13,7 @@
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Preview markdown",
|
||||
"command": "node ./tasks/preview-markdown.js \"${relativeFile}\"",
|
||||
"command": "node ./tasks/preview-markdown.js '${relativeFile}\"",
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
@ -22,7 +22,7 @@
|
||||
{
|
||||
"type": "shell",
|
||||
"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": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
@ -31,7 +31,7 @@
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Proxify link",
|
||||
"command": "node ./tasks/proxify-link.js \"${selectedText}\"",
|
||||
"command": "node ./tasks/proxify-link.js '${selectedText}'",
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
@ -40,7 +40,7 @@
|
||||
{
|
||||
"type": "shell",
|
||||
"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": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user