We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 789750d + ba85174 commit 004ed37Copy full SHA for 004ed37
2 files changed
.gitignore
@@ -1,5 +1,6 @@
1
package/
2
deisctl/deisctl
3
+makeself/
4
5
# ctags index
6
tags
Makefile
@@ -6,7 +6,8 @@ build:
installer:
7
rm -rf dist && mkdir -p dist
8
godep go build -a -o dist/deisctl .
9
- makeself.sh --bzip2 --nox11 --target /usr/local/bin dist \
+ @if [ ! -d makeself ]; then git clone -b deisctl-hack https://github.com/deis/makeself.git; fi
10
+ PATH=./makeself:$$PATH makeself.sh --bzip2 --nox11 --target /usr/local/bin dist \
11
dist/deisctl-`cat deis-version`-`go env GOOS`-`go env GOARCH`.run \
12
"Deis Control Utility" "/usr/local/bin/deisctl refresh-units"
13
0 commit comments