Question
I'm trying to execute a command with the format {C:\...\executable} build {C:\...\executable} link
. Here is the specific example I'm trying to execute. All it does is install a golang
module which lets me debug in vs code.
C:\Program Files\Go\bin\go.exe build -o C:\Users\linds\go\bin\dlv-dap.exe github.com/go-delve/delve/cmd/dlv
The issue i'm having is that I don't know how to actually execute it. I've tried running it in powershell
and bash
but both come back and say that I cant run program with the form C:\...
.
How do I execute code with the following or similar formats?
~~
Sorry that my descriptions of the issue aren't the best because frankly I hardly know what I'm dealing with right here. I can clarify more if needed.