From 972943c314b1021401d5b2fe81e2d2cae66f1563 Mon Sep 17 00:00:00 2001 From: Joe Birr-Pixton Date: Mon, 23 Dec 2024 12:42:05 +0000 Subject: [PATCH] src/data/README: update go instructions > 'go get' is no longer supported outside a module. > To build and install a command, use 'go install' with a version, > like 'go install example.com/cmd@latest' --- src/data/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/README.md b/src/data/README.md index 78fc778..45cf697 100644 --- a/src/data/README.md +++ b/src/data/README.md @@ -6,14 +6,14 @@ These files were encoded with the help of [der-ascii]. They can be decoded using: ```sh -go get github.com/google/der-ascii/cmd/der2ascii +go install github.com/google/der-ascii/cmd/der2ascii@latest der2ascii -i -o .ascii ``` New or modified der-ascii files can be encoded using: ```sh -go get github.com/google/der-ascii/cmd/ascii2der +go install github.com/google/der-ascii/cmd/ascii2der@latest ascii2der i .ascii -o ```