From 192b3ef47038377fb6c879a590248f159e0a4bb1 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Mon, 18 Jul 2022 20:33:45 +0000 Subject: [PATCH] Update to use 'go install' instead of 'go get' --- Makefile | 2 +- pkgs-golang.list | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 87aa969..427eaec 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ pkgs_void_update: # Golang # pkgs_golang: list pkgs-golang.list - go get -u $(shell ./list pkgs-golang.list) + go install $(shell ./list pkgs-golang.list) # # Ubuntu diff --git a/pkgs-golang.list b/pkgs-golang.list index b3e6625..8d503ee 100644 --- a/pkgs-golang.list +++ b/pkgs-golang.list @@ -1,5 +1,5 @@ # -github.com/junegunn/fzf # Fuzzy finder -github.com/gokcehan/lf # Pretty terminal file manager/browser -github.com/schachmat/wego # Weather app for the terminal -github.com/cjbassi/gotop # Another terminal based graphical activity monitor, inspired by gtop and vtop, this time written in Go! +github.com/junegunn/fzf@latest # Fuzzy finder +github.com/gokcehan/lf@latest # Pretty terminal file manager/browser +github.com/schachmat/wego@latest # Weather app for the terminal +github.com/cjbassi/gotop@latest # Another terminal based graphical activity monitor, inspired by gtop and vtop, this time written in Go! -- 2.20.1