Skip to content

Commit 94f7671

Browse files
author
John Kleinschmidt
committed
debug issue
1 parent d179a5a commit 94f7671

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

azure-pipelines-woa.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ steps:
1212
$serverArtifactPath = "$env:APPVEYOR_URL/buildjobs/$env:APPVEYOR_JOB_ID/artifacts/dist.zip"
1313
Invoke-RestMethod -Method Get -Uri $serverArtifactPath -OutFile $localArtifactPath -Headers @{ "Authorization" = "Bearer $env:APPVEYOR_TOKEN" }
1414
& "${env:ProgramFiles(x86)}\7-Zip\7z.exe" x -o"$pwd\out\Default" -y $localArtifactPath
15-
dir
15+
dir out
16+
dir out\Default
1617
displayName: 'Download and extract dist.zip for test'
1718
env:
1819
APPVEYOR_TOKEN: $(APPVEYOR_TOKEN)

script/lib/utils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ function getOutDir (options = {}) {
3232
if (options.outDir || process.env.ELECTRON_OUT_DIR) {
3333
const outDir = options.outDir || process.env.ELECTRON_OUT_DIR;
3434
const outPath = path.resolve(SRC_DIR, 'out', outDir);
35+
console.log(`Outpath is: ${outPath}`);
3536

3637
// Check that user-set variable is a valid/existing directory
3738
if (fs.existsSync(outPath)) {

0 commit comments

Comments
 (0)