From ef7815e778614aadf091c5ad5679cc7d8a112915 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 14 Mar 2019 22:32:31 -0400 Subject: [PATCH] debug output --- appveyor.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 5b58a5f..0d95c13 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -30,16 +30,22 @@ before_build: build_script: - ps: | - echo ${env:WIN_PKG_PATH} if(Test-Path -Path $env:WIN_PKG_PATH) { echo "Updating pkg resources" $rh = "C:\Program Files (x86)\Resource Hacker\ResourceHacker.exe" - Start-Process -FilePath $rh -ArgumentList ` - "-open ${env:WIN_PKG_PATH} -save ${env:WIN_PKG_PATH} -action delete -mask ICONGROUP,1," - Start-Process -FilePath $rh -ArgumentList ` + $rh1 = Start-Process -FilePath $rh -ArgumentList ` + "-open ${env:WIN_PKG_PATH} -save ${env:WIN_PKG_PATH} -action delete -mask ICONGROUP,1,"` + \| Out-File + echo "1" + ehoc $rh1 + $rh2 = Start-Process -FilePath $rh -ArgumentList ` "-open version-info.rc -save version-info.res -action compile" - Start-Process -FilePath $rh -ArgumentList ` + echo "2" + ehoc $rh2 + $rh3 = Start-Process -FilePath $rh -ArgumentList ` "-open ${env:WIN_PKG_PATH} -save ${env:WIN_PKG_PATH} -action addoverwrite -resource version-info.res," + echo "3" + ehoc $rh3 } - cmd: npm install - cmd: npm run dist