Update to use 'go install' instead of 'go get'
authorSiraaj Khandkar <siraaj@khandkar.net>
Mon, 18 Jul 2022 20:33:45 +0000 (20:33 +0000)
committerSiraaj Khandkar <siraaj@khandkar.net>
Mon, 18 Jul 2022 20:33:45 +0000 (20:33 +0000)
Makefile
pkgs-golang.list

index 87aa969..427eaec 100644 (file)
--- 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
index b3e6625..8d503ee 100644 (file)
@@ -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!
This page took 0.02367 seconds and 4 git commands to generate.