Skip to content

Commit

Permalink
src/data/README: update go instructions
Browse files Browse the repository at this point in the history
> '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'
  • Loading branch information
ctz committed Dec 23, 2024
1 parent a6de439 commit 955b2dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <filename> -o <filename>.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 <filename>.ascii -o <filename>
```

Expand Down

0 comments on commit 955b2dc

Please sign in to comment.