Skip to content

Commit

Permalink
188: fix typo in make variable
Browse files Browse the repository at this point in the history
commit 1f104b0 fixes a typo in the component_binaries variable, however
it didn't fix other instance of this variable used as dependencies, thus
breaking the container publishing functionality. this commit fixes this.
  • Loading branch information
Pavlos Tzianos authored and ptzianos committed May 21, 2024
1 parent 1f104b0 commit b22059d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ export
########################################
.PHONY: components component-binaries cmd/draconctl/bin protos build publish-component-containers publish-containers draconctl-image draconctl-image-publish clean-protos clean

$(component_binariess):
$(component_binaries):
CGO_ENABLED=0 ./scripts/build_component_binary.sh $@

component-binaries: $(component_binariess)
component-binaries: $(component_binaries)

$(component_containers): %/docker: %/bin
./scripts/build_component_container.sh $@
Expand Down

0 comments on commit b22059d

Please sign in to comment.