Skip to content

Commit

Permalink
fix: support whitespaces in PATH_VENDOR
Browse files Browse the repository at this point in the history
  • Loading branch information
zembrowski committed May 31, 2024
1 parent 9ecf564 commit 6ab18a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cotto:
exit 2; \
fi

@if [ -z "$$(find $(PATH_VENDOR) -name '*otto.*' -print -quit)" ]; then \
@if [ -z "$$(find '$(PATH_VENDOR)' -name '*otto.*' -print -quit)" ]; then \
echo "Error: No file matching *otto.{dll,dylib,so} found in $(PATH_VENDOR)"; \
exit 3; \
fi
Expand Down

0 comments on commit 6ab18a6

Please sign in to comment.