Skip to content

Commit fbcdbea

Browse files
committed
More output and import module
1 parent 16b9945 commit fbcdbea

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ environment:
1010
secure: zvkaZiaBXVko+3ZzuSb7W6DTUJmHX98XgEhKs28SnGD+4TM3gzhPxVnNWSmBhXEx
1111
install:
1212
- ps: >-
13-
Install-PackageProvider -Name NuGet -Force | Out-Null
13+
Install-PackageProvider -Name NuGet -Force
1414
15-
Remove-Module 'PowerShellGet' -Force -ErrorAction SilentlyContinue
15+
Remove-Module 'PowerShellGet' -Force -ErrorAction SilentlyContinue -Verbose
1616
17-
Install-Module 'PowerShellGet' -Scope CurrentUser -Force -AllowClobber
17+
Install-Module 'PowerShellGet' -Scope CurrentUser -Force -AllowClobber -Verbose
1818
19-
Install-Module 'powershell-yaml' -Scope CurrentUser -Force -AllowClobber
19+
Install-Module 'powershell-yaml' -Scope CurrentUser -Force -AllowClobber -Verbose
2020
build_script:
2121
- ps: .\build.ps1 -Revision "$env:APPVEYOR_BUILD_NUMBER" -Suffix "$env:APPVEYOR_REPO_BRANCH"
2222
deploy_script:

build.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
param([int]$Revision = 0, [string]$Suffix = '')
2+
Import-Module 'PowerShellGet' -Force
3+
24
$ErrorActionPreference = 'Stop'
35

46
$manifest = Test-ModuleManifest .\UnitySetup\UnitySetup.psd1

0 commit comments

Comments
 (0)