mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-12-12 06:16:37 +03:00
10 lines
221 B
Bash
Executable File
10 lines
221 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
brew update
|
|
brew install node python yarn jq zip
|
|
else
|
|
sudo apt-get install libx11-dev libxkbfile-dev libsecret-1-dev fakeroot rpm
|
|
nvm install 8
|
|
nvm use 8
|
|
fi |