Skip to content

Commit

Permalink
Merge pull request #18 from bacongobbler/org-rename
Browse files Browse the repository at this point in the history
rename org to draftcreate
  • Loading branch information
Matthew Fisher authored Apr 23, 2018
2 parents 50f74c3 + 5c19164 commit ddd0034
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ all: build

.PHONY: build
build:
GOBIN=$(BINDIR) $(GO) install $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' github.com/Azure/draft-pack-repo/cmd/...
GOBIN=$(BINDIR) $(GO) install $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' github.com/draftcreate/draft-pack-repo/cmd/...

.PHONY: build-cross
build-cross: LDFLAGS += -extldflags "-static"
build-cross:
CGO_ENABLED=0 gox -output="_dist/{{.OS}}-{{.Arch}}/{{.Dir}}" -osarch='$(TARGETS)' $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' github.com/Azure/draft-pack-repo/cmd/$(NAME)
CGO_ENABLED=0 gox -output="_dist/{{.OS}}-{{.Arch}}/{{.Dir}}" -osarch='$(TARGETS)' $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' github.com/draftcreate/draft-pack-repo/cmd/$(NAME)

.PHONY: dist
dist:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Draft pack repository plugin.
Fetch the latest version of `draft pack-repo` using

```
$ draft plugin install https://github.com/Azure/draft-pack-repo
$ draft plugin install https://github.com/draftcreate/draft-pack-repo
```

## Why a Plugin?
Expand Down
2 changes: 1 addition & 1 deletion cmd/pack-repo/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/spf13/cobra"

"github.com/Azure/draft-pack-repo/version"
"github.com/draftcreate/draft-pack-repo/version"
)

const versionDesc = `
Expand Down
2 changes: 1 addition & 1 deletion docs/release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Full steps, in bash:

```bash
export VERSION=vX.Y.Z
git clone https://github.com/Azure/draft-pack-repo
git clone https://github.com/draftcreate/draft-pack-repo
cd draft-pack-repo
git tag $VERSION
git push origin $VERSION
Expand Down
2 changes: 1 addition & 1 deletion scripts/get.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$name = "pack-repo"
$version = "canary"
$url = "https://github.com/Azure/draft-$name/releases/download/$version/$name-$version-windows-amd64.zip"
$url = "https://github.com/draftcreate/draft-$name/releases/download/$version/$name-$version-windows-amd64.zip"

if ($env:TEMP -eq $null) {
$env:TEMP = Join-Path $env:SystemDrive 'temp'
Expand Down
2 changes: 1 addition & 1 deletion scripts/get.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# Ripped from github.com/technosophos/helm-template's get-binary.sh script, with a few tweaks to fetch draft-pack-repo.

PROJECT_NAME="draft-pack-repo"
PROJECT_GH="Azure/$PROJECT_NAME"
PROJECT_GH="draftcreate/$PROJECT_NAME"

: ${DRAFT_PLUGIN_PATH:="$DRAFT_HOME/plugins/draft-pack-repo"}
: ${DRAFT_PLUGIN_VERSION:="canary"}
Expand Down
4 changes: 2 additions & 2 deletions versioning.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ endif

BINARY_VERSION ?= ${GIT_TAG}-${GIT_SHA}

LDFLAGS += -X github.com/Azure/draft-pack-repo/version.Version=${GIT_TAG}
LDFLAGS += -X github.com/Azure/draft-pack-repo/version.GitCommit=${GIT_COMMIT}
LDFLAGS += -X github.com/draftcreate/draft-pack-repo/version.Version=${GIT_TAG}
LDFLAGS += -X github.com/draftcreate/draft-pack-repo/version.GitCommit=${GIT_COMMIT}

0 comments on commit ddd0034

Please sign in to comment.