We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f897551 commit 7128235Copy full SHA for 7128235
appveyor.yml
@@ -19,8 +19,9 @@ init:
19
- choco install -y rabbitmq
20
21
install:
22
- - nuget install secure-file -ExcludeVersion
23
- - secure-file\tools\secure-file -decrypt %APPVEYOR_BUILD_FOLDER%\%KEYFILE%.enc -secret %SNKSECRET%
+ - IF DEFINED SNKSECRET (nuget install secure-file -ExcludeVersion)
+ - IF DEFINED SNKSECRET (secure-file\tools\secure-file -decrypt %APPVEYOR_BUILD_FOLDER%\%KEYFILE%.enc -secret %SNKSECRET%)
24
+ - IF NOT DEFINED SNKSECRET (sn -k rabbitmq.snk)
25
- ps: |
26
$regPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\RabbitMQ"
27
if (Test-Path "HKLM:\SOFTWARE\Wow6432Node\") { $regPath = "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\RabbitMQ" }
0 commit comments