Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

- Added the CLI_ARGS #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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