File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ import * as pioNodeHelpers from 'platformio-node-helpers';
1111import { PIO_CORE_VERSION_SPEC } from '../constants' ;
1212import PythonPrompt from './python-prompt' ;
1313import StateStorage from '../state-storage' ;
14+ import { extension } from '../main' ;
15+ import path from 'path' ;
1416import vscode from 'vscode' ;
1517
1618export default class InstallationManager {
@@ -34,6 +36,11 @@ export default class InstallationManager {
3436 useDevelopmentPIOCore : config . get ( 'useDevelopmentPIOCore' ) ,
3537 pythonPrompt : new PythonPrompt ( ) ,
3638 disableAutoUpdates : disableAutoUpdates ,
39+ predownloadedPackageDir : path . join (
40+ extension . context . extensionPath ,
41+ 'assets' ,
42+ 'predownloaded'
43+ ) ,
3744 }
3845 ) ,
3946 ] ;
You can’t perform that action at this time.
0 commit comments