-
Notifications
You must be signed in to change notification settings - Fork 233
Plugin appends 'Arduino.app' to path on MacOS #1221
Comments
Any thoughts on this? |
@recursivecodes I ran into the same issue and I believe the PR I just opened #1227 resolves this issue. I'm not too familiar with VSCode extension development, so I'm not sure about the steps to install an extension from a git repo, but I manually edited the source in |
Thanks @awmichel for fixing this! @recursivecodes this was an artifact of how the extension would handle accessing the IDE in older builds. |
This should be fixed in v0.4.1. @awmichel do you mind giving this a testing it out and letting me know if it works? |
@adiazulay Installed 0.4.1-rc1 locally and was able to verify and upload to a ESP32 using For anyone else using a MacOS M1 w/ {
"arduino.useArduinoCli": true,
"arduino.path": "/opt/homebrew/bin/",
"arduino.commandPath": "arduino-cli",
} On a non-M1 Mac (untested): {
"arduino.useArduinoCli": true,
"arduino.path": "/usr/local/bin/",
"arduino.commandPath": "arduino-cli",
} |
Why?
If I'm using the CLI, I put
/Users/bin/
andarduino-cli
for the command path, but it ends up looking in/Users/bin/Arduino.app/arduino-cli
. If I'm trying to use the CLI, it should not append anything to the path like that.vscode-arduino/src/common/sys/darwin.ts
Line 13 in 3bb7b14
The text was updated successfully, but these errors were encountered: