install_deps.sh 233 B

12345678910
  1. #!/bin/bash
  2. if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
  3. brew update
  4. brew install yarn --without-node
  5. brew install jq zip
  6. else
  7. sudo apt-get update
  8. sudo apt-get install libx11-dev libxkbfile-dev libsecret-1-dev fakeroot rpm
  9. fi