Skip to content
This repository has been archived by the owner on Jul 17, 2020. It is now read-only.

Commit

Permalink
ci(linux): adds missing spaces in bash if statements (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
2xAA authored May 22, 2020
1 parent 0418f8c commit 4510114
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ cache:
- "$HOME/.cache/electron"
- "$HOME/.cache/electron-builder"
before_install:
- if [ "$TRAVIS_OS_NAME" = "linux"]; then wget https://github.com/Palakis/obs-ndi/releases/download/4.9.0/libndi4_4.5.1-1_amd64.deb && sudo dpkg -i libndi4_4.5.1-1_amd64.deb; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then wget https://github.com/Palakis/obs-ndi/releases/download/4.9.0/libndi4_4.5.1-1_amd64.deb && sudo dpkg -i libndi4_4.5.1-1_amd64.deb; fi
script:
- if [ "$TRAVIS_OS_NAME" = "osx"]; then yarn run electron:build -mw --publish=never; fi
- if [ "$TRAVIS_OS_NAME" = "linux"]; then yarn run electron:build -l --publish=never; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then yarn run electron:build -mw --publish=never; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then yarn run electron:build -l --publish=never; fi
before_cache:
- rm -rf $HOME/.cache/electron-builder/wine
branches:
Expand Down

0 comments on commit 4510114

Please sign in to comment.