From 0241f2251c93fb9e89bee40e7488ff41744b2b23 Mon Sep 17 00:00:00 2001 From: Frederik Mogensen Date: Wed, 12 Aug 2020 21:40:40 +0200 Subject: [PATCH] Renamed command to git-open --- .github/workflows/ci.yaml | 4 ++-- Makefile | 4 ++-- cmd/{git-goopen => git-open}/git-helpers_test.go | 0 cmd/{git-goopen => git-open}/main.go | 0 cmd/{git-goopen => git-open}/main_test.go | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename cmd/{git-goopen => git-open}/git-helpers_test.go (100%) rename cmd/{git-goopen => git-open}/main.go (100%) rename cmd/{git-goopen => git-open}/main_test.go (100%) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 46e297e..d4fe140 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,11 +27,11 @@ jobs: - name: Build & Test run: | - go build -v ./cmd/git-goopen + go build -v ./cmd/git-open go test ./... - name: Run GoReleaser uses: goreleaser/goreleaser-action@master with: args: release --snapshot --skip-publish --rm-dist - workdir: ./cmd/git-goopen + workdir: ./cmd/git-open diff --git a/Makefile b/Makefile index 5bed224..4a8e3a4 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ report-card: ## Generate static analysis report goreportcard-cli -v build: ## Builds a static linked binary - go build -o git-open ./cmd/git-goopen + go build -o git-open ./cmd/git-open install: ## Installs the static linked binary - go install ./cmd/git-goopen + go install ./cmd/git-open diff --git a/cmd/git-goopen/git-helpers_test.go b/cmd/git-open/git-helpers_test.go similarity index 100% rename from cmd/git-goopen/git-helpers_test.go rename to cmd/git-open/git-helpers_test.go diff --git a/cmd/git-goopen/main.go b/cmd/git-open/main.go similarity index 100% rename from cmd/git-goopen/main.go rename to cmd/git-open/main.go diff --git a/cmd/git-goopen/main_test.go b/cmd/git-open/main_test.go similarity index 100% rename from cmd/git-goopen/main_test.go rename to cmd/git-open/main_test.go