mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-12-12 06:16:37 +03:00
058f0db4f3
* Fix race condition * Add check for GITHUB_TOKEN env var
10 lines
233 B
Bash
Executable File
10 lines
233 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 update
|
|
sudo apt-get install libx11-dev libxkbfile-dev libsecret-1-dev fakeroot rpm
|
|
fi |