Skip to content

Commit 8e84037

Browse files
authored
fix: Add quotes around wildcard pattern in find command (#695)
Signed-off-by: lidanserzi <[email protected]>
1 parent 93a55b0 commit 8e84037

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ TXN_DATA_CANCUN := txndata/cancun
9696

9797
WCP := wcp
9898

99-
LISPX := $(shell find * -name *.lispX)
99+
LISPX := $(shell find * -name "*.lispX")
100100
# Warn about any lispX files
101101
define warn_lispX
102102
@for FILE in ${LISPX}; do (echo "WARNING: $$FILE"); done
@@ -181,4 +181,4 @@ zkevm_shanghai.bin: ${ZKEVM_MODULES_SHANGHAI}
181181

182182
zkevm_cancun.bin: ${ZKEVM_MODULES_CANCUN}
183183
${GO_CORSET_COMPILE} -o $@ ${ZKEVM_MODULES_CANCUN}
184-
@$(call warn_lispX)
184+
@$(call warn_lispX)

0 commit comments

Comments
 (0)