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

Move to Hopp-cli #16

Merged
merged 1 commit into from
Aug 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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