Skip to content

Commit

Permalink
ref(builder): change BINARY_DEST_DIR to /usr/bin
Browse files Browse the repository at this point in the history
These binaries are non-essential for single-user operations, so they
belong in /usr/bin.
  • Loading branch information
Matthew Fisher committed May 16, 2015
1 parent 7daa7d0 commit e96f5f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,7 @@ controller/.secret_key
logs/

# local binaries, installers, and artifacts
builder/rootfs/bin/extract-domain
builder/rootfs/bin/extract-types
builder/rootfs/bin/extract-version
builder/rootfs/bin/generate-buildhook
builder/rootfs/bin/get-app-config
builder/rootfs/bin/get-app-values
builder/rootfs/bin/publish-release-controller
builder/rootfs/bin/yaml2json-procfile
builder/rootfs/usr/bin
cache/image/bin/
client/dist/
client/makeself/
Expand Down
2 changes: 1 addition & 1 deletion builder/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COMPONENT = $(notdir $(repo_path))
IMAGE = $(IMAGE_PREFIX)$(COMPONENT):$(BUILD_TAG)
DEV_IMAGE = $(DEV_REGISTRY)/$(IMAGE)
BINARIES := extract-domain extract-types extract-version generate-buildhook get-app-config get-app-values publish-release-controller yaml2json-procfile
BINARY_DEST_DIR := rootfs/bin
BINARY_DEST_DIR := rootfs/usr/bin

build: check-docker
for i in $(BINARIES); do \
Expand Down

0 comments on commit e96f5f2

Please sign in to comment.