Skip to content

Commit 11fd8a2

Browse files
committed
Fix: Makefile phony format
The one phony command was not aligned with rest of the file. Fixing it. Signed-off-by: Ales Raszka <[email protected]>
1 parent 88bb434 commit 11fd8a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fbc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ ${BINDIR}/yq:
9494
if [ ! -d ${BINDIR} ]; then mkdir -p ${BINDIR}; fi
9595
curl -sLO https://github.com/mikefarah/yq/releases/download/$(YQ_VERSION)/yq_$(OS)_$(ARCH) && mv yq_$(OS)_$(ARCH) ${BINDIR}/yq && chmod +x ${BINDIR}/yq
9696

97-
@PHONY: render_catalogs.sh
97+
.PHONY: render_catalogs.sh
9898
render_catalogs.sh:
9999
if [ ! -d ${BINDIR} ]; then mkdir -p ${BINDIR}; fi
100100
curl -sLO https://raw.githubusercontent.com/redhat-openshift-ecosystem/operator-pipelines/main/fbc/render_catalogs.sh

0 commit comments

Comments
 (0)