File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ environment:
10
10
secure : zvkaZiaBXVko+3ZzuSb7W6DTUJmHX98XgEhKs28SnGD+4TM3gzhPxVnNWSmBhXEx
11
11
install :
12
12
- ps : >-
13
- Install-PackageProvider -Name NuGet -Force | Out-Null
13
+ Install-PackageProvider -Name NuGet -Force
14
14
15
- Remove-Module 'PowerShellGet' -Force -ErrorAction SilentlyContinue
15
+ Remove-Module 'PowerShellGet' -Force -ErrorAction SilentlyContinue -Verbose
16
16
17
- Install-Module 'PowerShellGet' -Scope CurrentUser -Force -AllowClobber
17
+ Install-Module 'PowerShellGet' -Scope CurrentUser -Force -AllowClobber -Verbose
18
18
19
- Install-Module 'powershell-yaml' -Scope CurrentUser -Force -AllowClobber
19
+ Install-Module 'powershell-yaml' -Scope CurrentUser -Force -AllowClobber -Verbose
20
20
build_script :
21
21
- ps : .\build.ps1 -Revision "$env:APPVEYOR_BUILD_NUMBER" -Suffix "$env:APPVEYOR_REPO_BRANCH"
22
22
deploy_script :
Original file line number Diff line number Diff line change 1
1
param ([int ]$Revision = 0 , [string ]$Suffix = ' ' )
2
+ Import-Module ' PowerShellGet' - Force
3
+
2
4
$ErrorActionPreference = ' Stop'
3
5
4
6
$manifest = Test-ModuleManifest .\UnitySetup\UnitySetup.psd1
You can’t perform that action at this time.
0 commit comments