Skip to content

Commit eff8c2e

Browse files
author
Matthew Fisher
committed
Merge pull request #1950 from bacongobbler/build-deisctl
fix(deisctl): install only deisctl
2 parents 49ba73e + c0887df commit eff8c2e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

deisctl/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package/
2-
deisctl/deisctl
2+
deisctl
33
makeself/
44

55
# ctags index

deisctl/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
COMPONENTS=builder cache controller database logger registry router
22

33
build:
4-
CGO_ENABLED=0 godep go build -a -ldflags '-s' ./...
4+
CGO_ENABLED=0 godep go build -a -ldflags '-s' .
55

66
installer:
77
rm -rf dist && mkdir -p dist
@@ -12,7 +12,7 @@ installer:
1212
"deisctl refresh-units && chmod 755 /var/lib/deis /var/lib/deis/units && chmod -R 644 /var/lib/deis/units/*"
1313

1414
install:
15-
godep go install -v ./...
15+
godep go install -v .
1616

1717
setup-root-gotools:
1818
sudo GOPATH=/tmp/tmpGOPATH go get -u -v code.google.com/p/go.tools/cmd/cover

0 commit comments

Comments
 (0)