We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9a378b commit 6ace2ebCopy full SHA for 6ace2eb
io.sloeber.core/src/io/sloeber/core/api/CompileDescription.java
@@ -253,7 +253,10 @@ public String getCustomSizeCommand() {
253
public String getEnvValue() {
254
switch (this) {
255
case ARDUINO_WAY:
256
- return Common.makeEnvironmentVar(ENV_KEY_BUILD_PATH) + SLACH + ARDUINO_SIZE;
+ if(isLinux||isMac) {
257
+ return "sh "+ Common.makeEnvironmentVar(ENV_KEY_BUILD_PATH) + SLACH +ARDUINO_SIZE;
258
+ }
259
+ return Common.makeEnvironmentVar(ENV_KEY_BUILD_PATH) + SLACH +ARDUINO_SIZE;
260
case AVR_ALTERNATIVE:
261
return "${sloeber.size_command.avr}"; //$NON-NLS-1$
262
case RAW_RESULT:
0 commit comments