Skip to content

Commit

Permalink
Update package path (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha committed Apr 19, 2018
1 parent 615c560 commit ab2708d
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If you have a question about Steward or having problem using it, you can contact
If you have found a bug with Steward or want to request for new features, please [file an issue](https://github.com/appscode/Pack/issues/new).

## Contribution Flow
If you fix a bug or developed a new feature, feel free to submit a PR. In either case, please file a [Github issue]((https://github.com/appscode/steward/issues/new)) first, so that we can have a discussion on it. This is a rough outline of what a contributor's workflow looks like:
If you fix a bug or developed a new feature, feel free to submit a PR. In either case, please file a [Github issue]((https://github.com/soter/vault-operator/issues/new)) first, so that we can have a discussion on it. This is a rough outline of what a contributor's workflow looks like:

- Create a topic branch from where you want to base your work (usually master).
- Make commits of logical units.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Go Report Card](https://goreportcard.com/badge/github.com/appscode/steward)](https://goreportcard.com/report/github.com/appscode/steward)
[![Go Report Card](https://goreportcard.com/badge/github.com/soter/vault-operator)](https://goreportcard.com/report/github.com/soter/vault-operator)
[![Build Status](https://travis-ci.org/appscode/steward.svg?branch=master)](https://travis-ci.org/appscode/steward)
[![codecov](https://codecov.io/gh/appscode/steward/branch/master/graph/badge.svg)](https://codecov.io/gh/appscode/steward)
[![Docker Pulls](https://img.shields.io/docker/pulls/appscode/steward.svg)](https://hub.docker.com/r/appscode/steward/)
Expand Down
4 changes: 2 additions & 2 deletions docs/developer-guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ development environment, please follow [these instructions](https://golang.org/d
#### Download Source

```console
$ go get github.com/appscode/steward
$ cd $(go env GOPATH)/src/github.com/appscode/steward
$ go get github.com/soter/vault-operator
$ cd $(go env GOPATH)/src/github.com/soter/vault-operator
```

#### Install Dev tools
Expand Down
2 changes: 1 addition & 1 deletion docs/developer-guide/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The following steps must be done from a Linux x64 bit machine.
- Push all the changes to remote repo.
- Build and push steward docker image:
```console
$ cd ~/go/src/github.com/appscode/steward
$ cd ~/go/src/github.com/soter/vault-operator
./hack/release.sh
```

Expand Down
2 changes: 1 addition & 1 deletion glide-slow
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# - ???
# - Profit

pushd $GOPATH/src/github.com/appscode/steward
pushd $GOPATH/src/github.com/soter/vault-operator

glide up -v
glide vc --use-lock-file --only-code --no-tests
Expand Down
2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package: github.com/appscode/steward
package: github.com/soter/vault-operator
import:
- package: github.com/appscode/go
version: master
Expand Down
2 changes: 1 addition & 1 deletion hack/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -eou pipefail

GOPATH=$(go env GOPATH)
REPO_ROOT="$GOPATH/src/github.com/appscode/steward"
REPO_ROOT="$GOPATH/src/github.com/soter/vault-operator"

pushd $REPO_ROOT

Expand Down
10 changes: 5 additions & 5 deletions hack/docker/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,36 @@ GOPATH=$(go env GOPATH)
SRC=$GOPATH/src
BIN=$GOPATH/bin
ROOT=$GOPATH
REPO_ROOT=$GOPATH/src/github.com/appscode/steward
REPO_ROOT=$GOPATH/src/github.com/soter/vault-operator

source "$REPO_ROOT/hack/libbuild/common/lib.sh"
source "$REPO_ROOT/hack/libbuild/common/public_image.sh"

APPSCODE_ENV=${APPSCODE_ENV:-dev}
IMG=steward

DIST=$GOPATH/src/github.com/appscode/steward/dist
DIST=$GOPATH/src/github.com/soter/vault-operator/dist
mkdir -p $DIST
if [ -f "$DIST/.tag" ]; then
export $(cat $DIST/.tag | xargs)
fi

clean() {
pushd $GOPATH/src/github.com/appscode/steward/hack/docker
pushd $GOPATH/src/github.com/soter/vault-operator/hack/docker
rm steward Dockerfile
popd
}

build_binary() {
pushd $GOPATH/src/github.com/appscode/steward
pushd $GOPATH/src/github.com/soter/vault-operator
./hack/builddeps.sh
./hack/make.py build
detect_tag $DIST/.tag
popd
}

build_docker() {
pushd $GOPATH/src/github.com/appscode/steward/hack/docker
pushd $GOPATH/src/github.com/soter/vault-operator/hack/docker
cp $DIST/steward/steward-alpine-amd64 steward
chmod 755 steward

Expand Down
2 changes: 1 addition & 1 deletion hack/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def check_antipackage():
import yaml
from os.path import expandvars, join, dirname

libbuild.REPO_ROOT = expandvars('$GOPATH') + '/src/github.com/appscode/steward'
libbuild.REPO_ROOT = expandvars('$GOPATH') + '/src/github.com/soter/vault-operator'
BUILD_METADATA = libbuild.metadata(libbuild.REPO_ROOT)
libbuild.BIN_MATRIX = {
'steward': {
Expand Down
2 changes: 1 addition & 1 deletion hack/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -x
set -eou pipefail

GOPATH=$(go env GOPATH)
REPO_ROOT="$GOPATH/src/github.com/appscode/steward"
REPO_ROOT="$GOPATH/src/github.com/soter/vault-operator"

pushd $REPO_ROOT

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"

logs "github.com/appscode/go/log/golog"
"github.com/appscode/steward/pkg/cmds"
"github.com/soter/vault-operator/pkg/cmds"
)

func main() {
Expand Down

0 comments on commit ab2708d

Please sign in to comment.