Skip to content
This repository has been archived by the owner on Jul 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #16 from hoppscotch/hopp-cli
Browse files Browse the repository at this point in the history
Move to Hopp-cli
  • Loading branch information
liyasthomas committed Aug 25, 2020
2 parents fa9fbbe + 1ce67cb commit aeabcbc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*.dll
*.so
*.dylib
pwcli
hopp-cli

# Test binary, built with `go test -c`
*.test
Expand Down
12 changes: 6 additions & 6 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ changelog:
- '^test:'
release:
github:
owner: athul
name: pwcli
owner: hoppscotch
name: hopp-cli
brews:
- name: pwcli
- name: hopp-cli
github:
owner: athul
name: homebrew-tap
folder: Formula
homepage: 'https://github.com/athul/pwcli'
description: 'Postwoman CLI in Go'
install: bin.install "pwcli"
homepage: 'https://github.com/hoppscotch/hopp-cli'
description: 'CLI for Hoppscotch.io'
install: bin.install "hopp-cli"
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ BINDIR?=$(PREFIX)/bin
VERSION?=$(shell git tag | grep ^v | sort -V | tail -n 1)
GOFLAGS?=-ldflags '-X main.VERSION=${VERSION}'

pwcli: cli.go go.mod go.sum
hopp-cli: cli.go go.mod go.sum
@echo
@echo Building pwcli. This may take a minute or two.
@echo Building hopp-cli. This may take a minute or two.
@echo
go build $(GOFLAGS) -o $@
@echo
Expand All @@ -32,17 +32,17 @@ update:
.PHONY: install
install:
@echo
@echo Installing pwcli...
@echo Installing hopp-cli...
@echo
install -m755 pwcli $(BINDIR)
install -m755 hopp-cli $(BINDIR)
@echo
@echo ...Done\!

.PHONY: uninstall
uninstall:
@echo
@echo Uninstalling pwcli...
@echo Uninstalling hopp-cli...
@echo
rm -f $(BINDIR)/pwcli
rm -f $(BINDIR)/hopp-cli
@echo
@echo ...Done\!
2 changes: 1 addition & 1 deletion cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func main() {
WE REALLY NEED YOUR FEEDBACK,
CREATE A NEW ISSUE FOR BUGS AND FEATURE REQUESTS : < http://github.com/athul/pwcli >
CREATE A NEW ISSUE FOR BUGS AND FEATURE REQUESTS : < https://github.com/hoppscotch/hopp-cli >
`, cli.AppHelpTemplate)

Expand Down

0 comments on commit aeabcbc

Please sign in to comment.