File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 41
41
with :
42
42
python-version : 3.8
43
43
44
- # On new macos-latest machines, Python 3.9+ is used, and it's causing issues with binding.gyp
45
- - name : Use Python 3.8
46
- if : ${{ matrix.os == 'macos-latest' }}
47
- uses : actions/setup-python@v5
48
- with :
49
- python-version : 3.8
50
-
51
44
- name : Windows setup
52
45
if : ${{ matrix.os == 'windows-latest' }}
53
46
run : |
Original file line number Diff line number Diff line change @@ -214,6 +214,9 @@ export class ArduinoSettings implements IArduinoSettings {
214
214
this . _packagePath = path . join ( this . _arduinoPath , "portable" ) ;
215
215
} else if ( util . fileExistsSync ( path . join ( this . _arduinoPath , "AppxManifest.xml" ) ) ) {
216
216
this . _packagePath = path . join ( folder , "ArduinoData" ) ;
217
+ } else if ( process . env . hasOwnProperty ( "ARDUINO_DIRECTORIES_DATA" ) ) {
218
+
219
+ this . _packagePath = process . env . ARDUINO_DIRECTORIES_DATA
217
220
} else {
218
221
this . _packagePath = path . join ( process . env . LOCALAPPDATA , "Arduino15" ) ;
219
222
}
You can’t perform that action at this time.
0 commit comments