Remove yarn install
This commit is contained in:
parent
a021ff7471
commit
9478ac0027
1 changed files with 3 additions and 18 deletions
17
install.sh
17
install.sh
|
@ -36,21 +36,6 @@ function install_docker_compose() {
|
||||||
sudo chmod +x /usr/local/bin/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() {
|
function install_asdf() {
|
||||||
if [ -x "$(command -v asdf)" ]; then
|
if [ -x "$(command -v asdf)" ]; then
|
||||||
echo "asdf is already installed; skipping..."
|
echo "asdf is already installed; skipping..."
|
||||||
|
@ -104,6 +89,7 @@ function setup_pynvim() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_ctags() {
|
function install_ctags() {
|
||||||
|
sudo apt install autoconf
|
||||||
mkdir -p ~/.install
|
mkdir -p ~/.install
|
||||||
cd ~/.install
|
cd ~/.install
|
||||||
git clone https://github.com/universal-ctags/ctags.git
|
git clone https://github.com/universal-ctags/ctags.git
|
||||||
|
@ -117,7 +103,6 @@ function install_ctags() {
|
||||||
#install_utilities # TODO
|
#install_utilities # TODO
|
||||||
install_docker
|
install_docker
|
||||||
install_docker_compose
|
install_docker_compose
|
||||||
install_yarn
|
|
||||||
install_asdf
|
install_asdf
|
||||||
install_google_cloud_sdk
|
install_google_cloud_sdk
|
||||||
install_pyenv
|
install_pyenv
|
||||||
|
|
Loading…
Reference in a new issue