Remove yarn install

This commit is contained in:
Nicole Tietz-Sokolskaya 2019-03-12 12:04:43 -04:00
parent a021ff7471
commit 9478ac0027
1 changed files with 3 additions and 18 deletions

View File

@ -36,21 +36,6 @@ function install_docker_compose() {
sudo chmod +x /usr/local/bin/docker-compose
}
function install_yarn() {
if [ -x "$(command -v yarn)" ]; then
echo "yarn is already installed; skipping..."
return
fi
# add the key
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
# add the repo and update apt
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update
sudo apt install yarn
}
function install_asdf() {
if [ -x "$(command -v asdf)" ]; then
echo "asdf is already installed; skipping..."
@ -104,6 +89,7 @@ function setup_pynvim() {
}
function install_ctags() {
sudo apt install autoconf
mkdir -p ~/.install
cd ~/.install
git clone https://github.com/universal-ctags/ctags.git
@ -117,7 +103,6 @@ function install_ctags() {
#install_utilities # TODO
install_docker
install_docker_compose
install_yarn
install_asdf
install_google_cloud_sdk
install_pyenv