Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions go-gopher-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,18 @@ Perfect! Just saved in friends.png!
$ file friends.png
friends.png: PNG image data, 1156 x 882, 8-bit/color RGBA, non-interlaced
```

or

```
$ task run -- [command]

$ task run -- get friends
task: [run] GOFLAGS=-mod=mod go run main.go get friends
Try to get 'friends' Gopher...
Perfect! Just saved in friends.png!


$ file friends.png
friends.png: PNG image data, 1838 x 1408, 8-bit/color RGBA, non-interlaced
```
2 changes: 1 addition & 1 deletion go-gopher-cli/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tasks:
run:
desc: Run the app
cmds:
- GOFLAGS=-mod=mod go run main.go
- GOFLAGS=-mod=mod go run main.go {{.CLI_ARGS}}

clean:
desc: Remove all retrieved *.png files
Expand Down