From: Siraaj Khandkar Date: Mon, 18 Jul 2022 20:33:45 +0000 (+0000) Subject: Update to use 'go install' instead of 'go get' X-Git-Url: https://git.xandkar.net/?a=commitdiff_plain;h=192b3ef47038377fb6c879a590248f159e0a4bb1;p=khome.git Update to use 'go install' instead of 'go get' --- 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!