Skip to content

Commit 902042c

Browse files
committed
Fix create-new-scanner Make target with quotes
The quotes were erroneously removed as part of commit eceb125. This commit reverts that specific change to fix the execution of the create-new-scanner Make target. Signed-off-by: Max Maass <max.maass@iteratec.com>
1 parent 466a415 commit 902042c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ ifdef NAME
7474
rm -rf $(SCANNERS_DIR)/$(NAME)
7575
cp -r $(TEMPLATES_DIR)/new-scanner/ $(SCANNERS_DIR)/$(NAME)
7676
find $(SCANNERS_DIR)/$(NAME) -type f ! -name tmp \
77-
-exec sed -n s/new-scanner/$(NAME)/g;w $(SCANNERS_DIR)/$(NAME)/tmp {} \; \
77+
-exec sed -n "s/new-scanner/$(NAME)/g;w $(SCANNERS_DIR)/$(NAME)/tmp" {} \; \
7878
-exec mv $(SCANNERS_DIR)/$(NAME)/tmp {} \;
7979
mv $(SCANNERS_DIR)/$(NAME)/templates/new-scanner-parse-definition.yaml \
8080
$(SCANNERS_DIR)/$(NAME)/templates/$(NAME)-parse-definition.yaml

0 commit comments

Comments
 (0)