Unhardcode paths (#2782)

* Unhardcode paths

(fixed since last time)

* Misc. fixes

* More little fixes.

* Quoting fixes

* Fix quoting

* Unhardcode paths

Libcap fix

* Last little fixes
This commit is contained in:
James Larrowe
2018-10-26 13:38:09 -05:00
committed by Ed Reel
parent ca933a3a37
commit dc96990fd1
89 changed files with 182 additions and 191 deletions

View File

@@ -24,7 +24,7 @@ class Gox < Package
def self.install
system "go get github.com/mitchellh/iochan"
system "mkdir -p #{CREW_DEST_DIR}/usr/local/bin"
system "go build -o #{CREW_DEST_DIR}/usr/local/bin/gox"
system "mkdir -p #{CREW_DEST_PREFIX}/bin"
system "go build -o #{CREW_DEST_PREFIX}/bin/gox"
end
end