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

Commit aeabcbc

Browse files
authored
Merge pull request #16 from hoppscotch/hopp-cli
Move to Hopp-cli
2 parents fa9fbbe + 1ce67cb commit aeabcbc

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*.dll
1010
*.so
1111
*.dylib
12-
pwcli
12+
hopp-cli
1313

1414
# Test binary, built with `go test -c`
1515
*.test

.goreleaser.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ changelog:
3838
- '^test:'
3939
release:
4040
github:
41-
owner: athul
42-
name: pwcli
41+
owner: hoppscotch
42+
name: hopp-cli
4343
brews:
44-
- name: pwcli
44+
- name: hopp-cli
4545
github:
4646
owner: athul
4747
name: homebrew-tap
4848
folder: Formula
49-
homepage: 'https://github.com/athul/pwcli'
50-
description: 'Postwoman CLI in Go'
51-
install: bin.install "pwcli"
49+
homepage: 'https://github.com/hoppscotch/hopp-cli'
50+
description: 'CLI for Hoppscotch.io'
51+
install: bin.install "hopp-cli"

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ BINDIR?=$(PREFIX)/bin
33
VERSION?=$(shell git tag | grep ^v | sort -V | tail -n 1)
44
GOFLAGS?=-ldflags '-X main.VERSION=${VERSION}'
55

6-
pwcli: cli.go go.mod go.sum
6+
hopp-cli: cli.go go.mod go.sum
77
@echo
8-
@echo Building pwcli. This may take a minute or two.
8+
@echo Building hopp-cli. This may take a minute or two.
99
@echo
1010
go build $(GOFLAGS) -o $@
1111
@echo
@@ -32,17 +32,17 @@ update:
3232
.PHONY: install
3333
install:
3434
@echo
35-
@echo Installing pwcli...
35+
@echo Installing hopp-cli...
3636
@echo
37-
install -m755 pwcli $(BINDIR)
37+
install -m755 hopp-cli $(BINDIR)
3838
@echo
3939
@echo ...Done\!
4040

4141
.PHONY: uninstall
4242
uninstall:
4343
@echo
44-
@echo Uninstalling pwcli...
44+
@echo Uninstalling hopp-cli...
4545
@echo
46-
rm -f $(BINDIR)/pwcli
46+
rm -f $(BINDIR)/hopp-cli
4747
@echo
4848
@echo ...Done\!

cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ func main() {
123123
124124
WE REALLY NEED YOUR FEEDBACK,
125125
126-
CREATE A NEW ISSUE FOR BUGS AND FEATURE REQUESTS : < http://github.com/athul/pwcli >
126+
CREATE A NEW ISSUE FOR BUGS AND FEATURE REQUESTS : < https://github.com/hoppscotch/hopp-cli >
127127
128128
`, cli.AppHelpTemplate)
129129

0 commit comments

Comments
 (0)