Travis: install wine on linux

Signed-off-by: Jeffrey Morgan <jmorganca@gmail.com>
This commit is contained in:
Jeffrey Morgan 2015-11-24 16:36:50 -05:00
parent 94a55bc87e
commit f50a846d26
1 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,9 @@
#!/bin/bash #!/bin/bash
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew unlink node brew unlink node
brew update brew update
brew install homebrew/versions/node4-lts brew install homebrew/versions/node4-lts
else
apt-get install wine
fi fi