vscodium/install_deps.sh

10 lines
233 B
Bash
Raw Normal View History

2018-08-13 15:14:15 +00:00
#!/bin/bash
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update
2018-08-13 18:24:40 +00:00
brew install yarn --without-node
brew install jq zip
2018-08-13 15:14:15 +00:00
else
sudo apt-get update
2018-08-13 15:14:15 +00:00
sudo apt-get install libx11-dev libxkbfile-dev libsecret-1-dev fakeroot rpm
fi