chore: simplify .travis.yml dependencies installation across OSes (#938)

After our recent changes, the command to install dependencies for both
OS X and GNU/Linux has been unified as `make electron-develop`, so there
is no longer a need to have multiple conditionals for each OS in
`.travis.yml`.

Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
This commit is contained in:
Juan Cruz Viotti 2016-12-05 15:52:50 -04:00 committed by GitHub
parent bf2ff121f3
commit d8aee43f2d

View File

@ -44,15 +44,10 @@ install:
- gem install scss_lint
- npm install -g bower
- npm install -g electron-installer-debian
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
make electron-develop;
fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew install afsctool;
fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
make electron-develop;
fi
- make electron-develop
before_script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then