私はWindows上の迷惑メールプラグインのためにlaunch.jsonを設定しようとしています。私の現在のバージョンは次のようになります:迷惑メールプラグインのVSCode launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Vagrant",
"type": "Ruby",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/bin/vagrant",
"args": ["up"],
"env": {
"VAGRANT_CWD": "${workspaceRoot}/development"
}
}
]
}
今やプラグインを起動すると、外来は外部依存関係を失います。だから私はエラーを取得する:
The executable 'curl' Vagrant is trying to run was not
found in the %PATH% variable. This is an error. Please verify
this software is installed and on the path.
は、トラブルのように私のパス音(cp.exe
、dir.exe
、...)に必要な依存関係を追加します。
私が試した:
"env": {
"PATH": "/HashiCorp/Vagrant/embedded/bin;${PATH}",
"VAGRANT_CWD": "${workspaceRoot}/development"
}
をしかし、その後、私はDebugger terminal error: Process failed: spawn rdebug-ide.bat ENOENT
を取得します。
launch.jsonにPATH環境変数を使用する方法はありますか?