Skip to content

Commit

Permalink
Speed up CDN in a Box tab completion (apache#8041)
Browse files Browse the repository at this point in the history
Speed up CDN in a Box completion
  • Loading branch information
zrhoffman authored Jul 19, 2024
1 parent f6c968b commit e8bf02b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infrastructure/cdn-in-a-box/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ BUILD_NUMBER := $(shell bash -c ' \
output+=".$$(git rev-parse --short=8 HEAD)"; \
echo "$$output"' || \
cat $(TC_DIR)/BUILD_NUMBER)
BUILD_ARCH := $(shell docker run --name=ciab-get-$(BASE_IMAGE)-$(RHEL_VERSION)-arch --rm $(BASE_IMAGE):$(RHEL_VERSION) rpm --eval %_arch )
BUILD_ARCH := $(shell docker create --name=ciab-get-$(BASE_IMAGE)-$(RHEL_VERSION)-arch --rm $(BASE_IMAGE):$(RHEL_VERSION) rpm --eval %_arch >/dev/null 2>&1 || true && docker start --attach ciab-get-$(BASE_IMAGE)-$(RHEL_VERSION)-arch )
TC_VERSION := $(shell cat "$(TC_DIR)/VERSION")
TOMCAT_VERSION := $(shell grep '^\s*TOMCAT_VERSION=' "$(TC_DIR)/.env" | cut -d= -f2)
ATS_VERSION := $(shell $(CIAB_DIR_RELATIVE)bin/ats-version.sh)
Expand Down

0 comments on commit e8bf02b

Please sign in to comment.