1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-01-14 20:01:31 +01:00

remove else if

This commit is contained in:
Kyle Spearrin 2019-03-12 16:37:36 -04:00
parent ac6a05e53b
commit 43b051cc37

View File

@ -53,11 +53,13 @@ build_script:
after_build: after_build:
- ps: | - ps: |
if($isLinux && $env:prod_deploy) { if($env:prod_deploy) {
echo "Deploy Linux..." if($isLinux) {
} echo "Deploy Linux..."
else if($env:prod_deploy) { }
echo "Deploy Windows..." else {
echo "Deploy Windows..."
}
} }
for: for: