@@ -21,6 +21,7 @@ import { CancellationToken, Uri, l10n } from "vscode";
21
21
import { readParameter } from "../idfConfiguration" ;
22
22
import { join } from "path" ;
23
23
import { getVirtualEnvPythonPath } from "../pythonManager" ;
24
+ import { EOL } from "os" ;
24
25
25
26
export async function addDependency (
26
27
workspace : Uri ,
@@ -47,10 +48,17 @@ export async function addDependency(
47
48
dependency ,
48
49
"reconfigure"
49
50
) ;
50
- const addDependencyResult = await spawn ( pythonBinPath , addDependencyArgs , {
51
- cwd : workspace . fsPath ,
52
- env : modifiedEnv ,
53
- } , undefined , undefined , cancelToken ) ;
51
+ const addDependencyResult = await spawn (
52
+ pythonBinPath ,
53
+ addDependencyArgs ,
54
+ {
55
+ cwd : workspace . fsPath ,
56
+ env : modifiedEnv ,
57
+ } ,
58
+ undefined ,
59
+ undefined ,
60
+ cancelToken
61
+ ) ;
54
62
Logger . infoNotify (
55
63
`Added dependency ${ dependency } to the component "${ component } "`
56
64
) ;
@@ -70,7 +78,7 @@ export async function addDependency(
70
78
export async function createProject (
71
79
workspace : Uri ,
72
80
example : string
73
- ) : Promise < void > {
81
+ ) : Promise < Uri > {
74
82
try {
75
83
const idfPathDir = readParameter ( "idf.espIdfPath" ) ;
76
84
const idfPy = join ( idfPathDir , "tools" , "idf.py" ) ;
@@ -85,6 +93,12 @@ export async function createProject(
85
93
throw new Error ( "The paths to idf, idf.py or pythonBin do not exist." ) ;
86
94
}
87
95
96
+ const match = example . match ( / (?< = : ) .* / ) ;
97
+ if ( ! match ) {
98
+ return ;
99
+ }
100
+ const projectPath = Uri . joinPath ( workspace , match [ 0 ] ) ;
101
+
88
102
const createProjectCommand : string [ ] = [
89
103
idfPy ,
90
104
"create-project-from-example" ,
@@ -99,9 +113,26 @@ export async function createProject(
99
113
env : modifiedEnv ,
100
114
}
101
115
) ;
102
-
103
116
Logger . infoNotify ( `Creating project from ${ example } "` ) ;
104
117
Logger . info ( createProjectResult . toString ( ) ) ;
118
+
119
+ const marker = "downloaded to " ;
120
+ const markerIndex = createProjectResult . toString ( ) . lastIndexOf ( marker ) ;
121
+ if ( markerIndex !== - 1 ) {
122
+ const extractedPathLines = createProjectResult
123
+ . toString ( )
124
+ . substring ( markerIndex + marker . length )
125
+ . trim ( ) ;
126
+ const lineBreakIndex = extractedPathLines . lastIndexOf ( EOL ) ;
127
+ const extractedPath = extractedPathLines
128
+ . toString ( )
129
+ . substring ( 0 , lineBreakIndex )
130
+ . trim ( ) ;
131
+ Logger . info ( `Extracted path ${ extractedPath } ` ) ;
132
+ return Uri . file ( extractedPath ) ;
133
+ }
134
+
135
+ return projectPath ;
105
136
} catch ( error ) {
106
137
const throwableError = new Error (
107
138
`${ l10n . t (
0 commit comments