Skip to content

Commit

Permalink
Merge pull request #181 from fireworq/use-x-motemen
Browse files Browse the repository at this point in the history
Use x-motemen/gobump instead of legacy motemen/gobump
  • Loading branch information
Sixeight authored Sep 2, 2020
2 parents 591984e + 6f0eebf commit ff96f49
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion script/ci/can-release
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ v0*|v1*|v2*|v3*|v4*|v5*|v6*|v7*|v8*|v9*) ;;
exit 1 ;;
esac

type gobump >/dev/null || go get github.com/motemen/gobump/cmd/gobump
type gobump >/dev/null || go get github.com/x-motemen/gobump/cmd/gobump
[ "$TRAVIS_TAG" = "v$(gobump show -r)" ] || {
echo "Invalid tag: $TRAVIS_TAG != v$(gobump show -r)" >&2
exit 1
Expand Down
2 changes: 1 addition & 1 deletion script/ci/release
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -ex
BRANCH="${GIT_BRANCH:-${TRAVIS_BRANCH}}"
[ -z "$BRANCH" ] || git checkout "$BRANCH"

type gobump >/dev/null || go get github.com/motemen/gobump/cmd/gobump
type gobump >/dev/null || go get github.com/x-motemen/gobump/cmd/gobump
type ghr >/dev/null || go get github.com/tcnksm/ghr
type ghch >/dev/null || go get github.com/Songmu/ghch/cmd/ghch

Expand Down
2 changes: 1 addition & 1 deletion script/new-release
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
DIR=$(cd $(dirname "$0")/..; pwd)
cd "$DIR"

type gobump >/dev/null || go get github.com/motemen/gobump/cmd/gobump
type gobump >/dev/null || go get github.com/x-motemen/gobump/cmd/gobump
type ghch >/dev/null || go get github.com/Songmu/ghch/cmd/ghch
type jq >/dev/null || {
echo 'You need `jq` command installed' >&2
Expand Down

0 comments on commit ff96f49

Please sign in to comment.