File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 12
12
$serverArtifactPath = "$env:APPVEYOR_URL/buildjobs/$env:APPVEYOR_JOB_ID/artifacts/dist.zip"
13
13
Invoke-RestMethod -Method Get -Uri $serverArtifactPath -OutFile $localArtifactPath -Headers @{ "Authorization" = "Bearer $env:APPVEYOR_TOKEN" }
14
14
& "${env:ProgramFiles(x86)}\7-Zip\7z.exe" x -o"$pwd\out\Default" -y $localArtifactPath
15
- dir
15
+ dir out
16
+ dir out\Default
16
17
displayName : ' Download and extract dist.zip for test'
17
18
env :
18
19
APPVEYOR_TOKEN : $(APPVEYOR_TOKEN)
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ function getOutDir (options = {}) {
32
32
if ( options . outDir || process . env . ELECTRON_OUT_DIR ) {
33
33
const outDir = options . outDir || process . env . ELECTRON_OUT_DIR ;
34
34
const outPath = path . resolve ( SRC_DIR , 'out' , outDir ) ;
35
+ console . log ( `Outpath is: ${ outPath } ` ) ;
35
36
36
37
// Check that user-set variable is a valid/existing directory
37
38
if ( fs . existsSync ( outPath ) ) {
You can’t perform that action at this time.
0 commit comments