Skip to content

Commit

Permalink
🐛 Fix erroneous replacement of node:
Browse files Browse the repository at this point in the history
`caml_sys_open_for_node:` should not be altered
  • Loading branch information
Zeta611 committed Feb 13, 2025
1 parent b9101a2 commit f0633ab
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 @@ -9,7 +9,7 @@ $(TARGET_JS):
$(DUNE) build --profile=prod

$(OUTPUT_JS): $(TARGET_JS)
$(SED) 's/node://g' $(TARGET_JS) >$(OUTPUT_JS)
$(SED) -E 's/(^|[^[:alnum:]_])node:/\1/g' $(TARGET_JS) >$(OUTPUT_JS)

clean:
rm -f $(OUTPUT_JS)
Expand Down

0 comments on commit f0633ab

Please sign in to comment.