From 68fd19d487103ce9d28a78247ba97d87445f412e Mon Sep 17 00:00:00 2001 From: Karan Sharma Date: Fri, 25 Jun 2021 18:00:57 +0530 Subject: [PATCH] fix: Rename CLI binary Previously binary was named as doggo-cli.bin, which made it difficult for users building from source as they had to rename it. --- Makefile | 2 +- README.md | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 024f600..27f3cac 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CLI_BIN := ./bin/doggo-cli.bin +CLI_BIN := ./bin/doggo.bin API_BIN := ./bin/doggo-api.bin HASH := $(shell git rev-parse --short HEAD) diff --git a/README.md b/README.md index 6f828fb..e54d3cf 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,6 @@ You need to have `go` installed in your system. ```bash $ go get github.com/mr-karan/doggo/cmd/doggo -$ mv $GOPATH/bin/cli $GOPATH/bin/doggo ``` The binary will be available at `$GOPATH/bin/doggo`.