mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
remove else if
This commit is contained in:
12
appveyor.yml
12
appveyor.yml
@@ -53,11 +53,13 @@ build_script:
|
||||
|
||||
after_build:
|
||||
- ps: |
|
||||
if($isLinux && $env:prod_deploy) {
|
||||
echo "Deploy Linux..."
|
||||
}
|
||||
else if($env:prod_deploy) {
|
||||
echo "Deploy Windows..."
|
||||
if($env:prod_deploy) {
|
||||
if($isLinux) {
|
||||
echo "Deploy Linux..."
|
||||
}
|
||||
else {
|
||||
echo "Deploy Windows..."
|
||||
}
|
||||
}
|
||||
|
||||
for:
|
||||
|
||||
Reference in New Issue
Block a user