Skip to content

Commit cab2b8e

Browse files
committed
Fix shell invocation for getting latest FE release
This was not actually calling a shell and was returning an empty `LATEST_RELEASE` Signed-off-by: Juan Antonio Osorio <[email protected]>
1 parent 21dbd33 commit cab2b8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ build: clean test
3434
image-build:
3535
DOCKER_BUILDKIT=1 $(CONTAINER_BUILD) \
3636
-f Dockerfile \
37-
--build-arg LATEST_RELEASE=$(curl -s "https://api.github.com/repos/stacklok/codegate-ui/releases/latest" | grep '"zipball_url":' | cut -d '"' -f 4) \
37+
--build-arg LATEST_RELEASE=$(shell curl -s "https://api.github.com/repos/stacklok/codegate-ui/releases/latest" | grep '"zipball_url":' | cut -d '"' -f 4) \
3838
--build-arg CODEGATE_VERSION="$(shell git describe --tags --abbrev=0)-$(shell git rev-parse --short HEAD)-dev" \
3939
-t codegate \
4040
. \

0 commit comments

Comments
 (0)