9 lines
No EOL
211 B
Bash
Executable file
9 lines
No EOL
211 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
brew update
|
|
brew install yarn --without-node
|
|
brew install jq zip
|
|
else
|
|
sudo apt-get install libx11-dev libxkbfile-dev libsecret-1-dev fakeroot rpm
|
|
fi |