Skip to content

Commit e96f5f2

Browse files
author
Matthew Fisher
committed
ref(builder): change BINARY_DEST_DIR to /usr/bin
These binaries are non-essential for single-user operations, so they belong in /usr/bin.
1 parent 7daa7d0 commit e96f5f2

2 files changed

Lines changed: 2 additions & 9 deletions

File tree

.gitignore

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,7 @@ controller/.secret_key
2222
logs/
2323

2424
# local binaries, installers, and artifacts
25-
builder/rootfs/bin/extract-domain
26-
builder/rootfs/bin/extract-types
27-
builder/rootfs/bin/extract-version
28-
builder/rootfs/bin/generate-buildhook
29-
builder/rootfs/bin/get-app-config
30-
builder/rootfs/bin/get-app-values
31-
builder/rootfs/bin/publish-release-controller
32-
builder/rootfs/bin/yaml2json-procfile
25+
builder/rootfs/usr/bin
3326
cache/image/bin/
3427
client/dist/
3528
client/makeself/

builder/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COMPONENT = $(notdir $(repo_path))
1111
IMAGE = $(IMAGE_PREFIX)$(COMPONENT):$(BUILD_TAG)
1212
DEV_IMAGE = $(DEV_REGISTRY)/$(IMAGE)
1313
BINARIES := extract-domain extract-types extract-version generate-buildhook get-app-config get-app-values publish-release-controller yaml2json-procfile
14-
BINARY_DEST_DIR := rootfs/bin
14+
BINARY_DEST_DIR := rootfs/usr/bin
1515

1616
build: check-docker
1717
for i in $(BINARIES); do \

0 commit comments

Comments
 (0)