summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormicah <micah@riseup.net>2022-04-04 12:59:09 +0000
committermicah <micah@riseup.net>2022-04-04 12:59:09 +0000
commitd2891efe62860b764c5e802f023ece1792553e55 (patch)
tree0ea45bf490c18e3130f82598917531124999c72c
parenta5c68936ddfea17ce0b82fb1730e9d76e9fee77a (diff)
parenta33bfa3ed293f0df56b138668702fb11d22dc984 (diff)
Merge branch 'readme_go_deps_tweak' into 'main'
Fix Go dependency install instructions in README See merge request leap/container-platform/lilypad!53
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 79e4c5a..c6d7b4e 100644
--- a/README.md
+++ b/README.md
@@ -23,9 +23,9 @@ Other Linux distributions might need additional steps to install all requirement
```shell
sudo apt-get install golang build-essential bind9utils python3-pysodium python3-jinja2 python3-netaddr python3-openssl python3-yaml python3-six python3-crypto ansible git
-go get -u git.autistici.org/ale/x509ca
-go get -u git.autistici.org/ale/ed25519gen
-go get git.autistici.org/ai3/go-common/cmd/pwtool
+go install git.autistici.org/ale/x509ca@latest
+go install git.autistici.org/ale/ed25519gen@latest
+go install git.autistici.org/ai3/go-common/cmd/pwtool@latest
export PATH=$PATH:$HOME/go/bin
```