From 1d463522977f1e8f0590d626e174c5b0a6dc5f2b Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 17 Jan 2019 17:26:48 -0800 Subject: [PATCH] Fix check for APPVEYOR_REPO_TAG --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 7d4acdc7..de82a7d5 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,7 +1,7 @@ build: false install: # Terminate early unless building either a tag or a PR. - - if not defined APPVEYOR_REPO_TAG if not "%APPVEYOR_REPO_BRANCH%" == "master" appveyor exit + - if "%APPVEYOR_REPO_TAG%" == "false" if not "%APPVEYOR_REPO_BRANCH%" == "master" appveyor exit # Install rust - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe