Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use go get for glide #3

Merged
merged 2 commits into from
Oct 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,13 @@ go:
- 1.7
- tip

addons:
apt:
sources:
- sourceline: 'ppa:masterminds/glide'
packages:
- glide

cache:
directories:
- $HOME/.glide

install:
- go get github.com/Masterminds/glide
- glide install --strip-vendor

script:
- go test -v $(glide novendor)
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ Download the Packer binaries [here](https://www.packer.io/downloads.html) or bui

Install [glide](https://github.com/Masterminds/glide#install)

Next, clone this repository into `$GOPATH/src/github.com/leonidlm/packer-builder-softlayer`. Then build the packer-softlayer-builder binary into the same folder as the packer binaries:
Next, clone this repository into `$GOPATH/src/github.com/watson-platform/packer-builder-softlayer`. Then build the packer-softlayer-builder binary into the same folder as the packer binaries:

```
cd $GOPATH/src/github.com/leonidlm/packer-builder-softlayer
glide update --strip-vendor
cd $GOPATH/src/github.com/watson-platform/packer-builder-softlayer
glide install --strip-vendor
go build -o /usr/local/packer/packer-builder-softlayer main.go
```

Expand Down Expand Up @@ -109,7 +109,7 @@ As already stated above, a good way of reviewing the available options is by ins
## Contribute

New contributors are always welcome!
When in doubt please feel free to ask questions, just [Create an issue](https://github.com/leonidlm/packer-builder-softlayer/issues/new) with your enquiries.
When in doubt please feel free to ask questions, just [Create an issue](https://github.com/watson-platform/packer-builder-softlayer/issues/new) with your enquiries.

### Development Environment

Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ VM_GUI=false

GOROOT = '/opt/go'
GOPATH = '/opt/gopath'
PACKAGE_PATH = 'src/github.com/leonidlm/packer-builder-softlayer'
PACKAGE_PATH = 'src/github.com/watson-platform/packer-builder-softlayer'

script = <<SCRIPT
SRCROOT="#{GOROOT}"
Expand Down
4 changes: 2 additions & 2 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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/leonidlm/packer-builder-softlayer
package: github.com/watson-platform/packer-builder-softlayer
import:
- package: github.com/mitchellh/multistep
- package: github.com/mitchellh/packer
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/leonidlm/packer-builder-softlayer/builder/softlayer"
"github.com/watson-platform/packer-builder-softlayer/builder/softlayer"
"github.com/mitchellh/packer/packer/plugin"
)

Expand Down