File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -144,17 +144,18 @@ export class Packages {
144
144
}
145
145
146
146
private async _extract ( file : string , dest : string ) : Promise < string > {
147
- core . info ( `Extracting ${ file } to ${ dest } ` ) ;
147
+ core . info ( `_extract: Extracting ${ file } to ${ dest } ` ) ;
148
148
return tc . extractZip ( file , dest ) ;
149
149
}
150
150
151
151
private async _download ( filename : string ) : Promise < string > {
152
152
const downloadPath = path . join ( this . _getTempDirectory ( ) , filename ) ;
153
- core . info ( `Downloading ${ this . baseUrl } /${ filename } to ${ downloadPath } ` ) ;
153
+ core . info ( `_download: Downloading ${ this . baseUrl } /${ filename } to ${ downloadPath } ` ) ;
154
154
return tc . downloadTool ( `${ this . baseUrl } /${ filename } ` , downloadPath ) ;
155
155
}
156
156
157
157
private async _clearDirectory ( dirPath : string ) : Promise < void > {
158
+ core . info ( `_clearDirectory: Clearing ${ dirPath } ` ) ;
158
159
if (
159
160
await fs
160
161
. access ( dirPath )
You can’t perform that action at this time.
0 commit comments