diff --git a/README.md b/README.md index 74701ce..2819f0f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black) ![macOS](https://img.shields.io/badge/mac%20os-000000?style=for-the-badge&logo=macos&logoColor=F0F0F0) -# ignr-cli +# ignr Simple no-frills .gitignore generator backed by the Github API. @@ -11,7 +11,7 @@ Simple no-frills .gitignore generator backed by the Github API. ## Install ```console -go install github.com/onyx-and-iris/ignr-cli@latest +go install github.com/onyx-and-iris/ignr@latest ``` ## Configuration @@ -41,7 +41,7 @@ export IGNR_FILTER=startswith Trigger the selection prompt. ```console -ignr-cli new +ignr new ``` The prompt filter can be activated by pressing `/`: diff --git a/Taskfile.yaml b/Taskfile.yaml index 4351341..18c4805 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -1,7 +1,7 @@ version: '3' vars: - PROGRAM: ignr-cli + PROGRAM: ignr SHELL: '{{if eq .OS "Windows_NT"}}powershell{{end}}' BIN_DIR: bin VERSION: @@ -12,12 +12,12 @@ vars: tasks: default: - desc: Build the ignr-cli project + desc: Build the ignr project cmds: - task: build build: - desc: Build the ignr-cli project + desc: Build the ignr project deps: [vet] cmds: - task: build-windows @@ -35,13 +35,13 @@ tasks: - go fmt ./... build-windows: - desc: Build the ignr-cli project for Windows + desc: Build the ignr project for Windows cmds: - GOOS=windows GOARCH=amd64 go build -o {{.WINDOWS}} -ldflags="-X main.version={{.VERSION}}" internal: true build-linux: - desc: Build the ignr-cli project for Linux + desc: Build the ignr project for Linux cmds: - GOOS=linux GOARCH=amd64 go build -o {{.LINUX}} -ldflags="-X main.version={{.VERSION}}" internal: true