Skip to content

Commit 972943c

Browse files
committed
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'
1 parent 540633b commit 972943c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/data/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ These files were encoded with the help of [der-ascii]. They can be decoded
66
using:
77

88
```sh
9-
go get github.com/google/der-ascii/cmd/der2ascii
9+
go install github.com/google/der-ascii/cmd/der2ascii@latest
1010
der2ascii -i <filename> -o <filename>.ascii
1111
```
1212

1313
New or modified der-ascii files can be encoded using:
1414

1515
```sh
16-
go get github.com/google/der-ascii/cmd/ascii2der
16+
go install github.com/google/der-ascii/cmd/ascii2der@latest
1717
ascii2der i <filename>.ascii -o <filename>
1818
```
1919

0 commit comments

Comments
 (0)