You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Heya, I'm trying to jack-in on Windows and running into some trouble. I couldn't find the error message I am seeing on #195 so opened this new issue instead.
I've a project that I can connect to via "Calva: connect to a running REPL server". When I try to jack in using cmd as my default console, I see this:
> Executing task: C:\Program Files\nodejs\npx.cmd <
'C:\Program' is not recognized as an internal or external command,
operable program or batch file.
The terminal process terminated with exit code: 1
Terminal will be reused by tasks, press any key to close it.
Using Powershell shows a similar message. Using Git Bash shows a variation:
> Executing task: C:\Program Files\nodejs\npx.cmd <
/usr/bin/bash: C:Program: command not found
The terminal process terminated with exit code: 127
Terminal will be reused by tasks, press any key to close it.
I'm not sure where the npx call is coming from. I guess Calva uses it. The problem with cmd and Powershell seems to be that the task path is not quoted. The problem with Git Bash seems to be the same as cmd/Powershell, plus the fact that \ is the escape character in *nix shells.
The text was updated successfully, but these errors were encountered:
Sorry about that, I was misusing the Jack-in command. I pressed ctrl+shift+p, selected the jack in command, pressed the down arrow to select the build I wanted, and then pressed enter. But since I wasn't really selecting it in the checkbox, it didn't work properly.
After ticking the checkbox for the build, I can jack in.
Heya, I'm trying to jack-in on Windows and running into some trouble. I couldn't find the error message I am seeing on #195 so opened this new issue instead.
I've a project that I can connect to via "Calva: connect to a running REPL server". When I try to jack in using cmd as my default console, I see this:
Using Powershell shows a similar message. Using Git Bash shows a variation:
I'm not sure where the
npx
call is coming from. I guess Calva uses it. The problem with cmd and Powershell seems to be that the task path is not quoted. The problem with Git Bash seems to be the same as cmd/Powershell, plus the fact that\
is the escape character in *nix shells.The text was updated successfully, but these errors were encountered: