From 4b16cc55fd529b90baa2eecfee6b2d4a7736ee7a Mon Sep 17 00:00:00 2001 From: Arif Herusetyo Wicaksono Date: Wed, 25 Mar 2020 03:54:23 +0900 Subject: [PATCH] Add uninstall doc for go and nodejs --- go.md | 6 ++++++ nodejs.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/go.md b/go.md index dc73ad8..edc7d65 100644 --- a/go.md +++ b/go.md @@ -2,6 +2,12 @@ Install go programming language to user .local/bin directory. +## Remove old version before installation + +```bash +rm -rf $HOME/.local/go +``` + ## Install binary release from repositories Check [release information](https://golang.org/dl/) for the latest stable version. diff --git a/nodejs.md b/nodejs.md index 36bcc3b..946f16d 100644 --- a/nodejs.md +++ b/nodejs.md @@ -2,6 +2,12 @@ Install Node.js for Javascript auto-completion in Vim 8. +## Remove old version before installation + +```bash +rm -rf $HOME/.local/nodejs +``` + ## Install binary release from repositories Check [release information](https://nodejs.org/en/download/) for the appropriate version.