diff options
author | Loïc Hoguin <[email protected]> | 2023-03-09 11:10:57 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2023-03-09 11:21:17 +0100 |
commit | 063a24a83278f3e89c26daa42b811a9e30581eee (patch) | |
tree | d7cac93f665d41a111ee5b9a2b66300057e6e2c6 | |
parent | 6423c1c0570336c85540d8db1126831d319251bd (diff) | |
download | erlang.mk-063a24a83278f3e89c26daa42b811a9e30581eee.tar.gz erlang.mk-063a24a83278f3e89c26daa42b811a9e30581eee.tar.bz2 erlang.mk-063a24a83278f3e89c26daa42b811a9e30581eee.zip |
Add missing dot breaking Relx eval after upgrade to Relx 4
-rw-r--r-- | plugins/relx.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/relx.mk b/plugins/relx.mk index de12ba1..5683013 100644 --- a/plugins/relx.mk +++ b/plugins/relx.mk @@ -130,7 +130,7 @@ ifdef RELOAD rel:: $(verbose) $(RELX_OUTPUT_DIR)/$(RELX_REL_NAME)/bin/$(RELX_REL_NAME)$(RELX_REL_EXT) ping $(verbose) $(RELX_OUTPUT_DIR)/$(RELX_REL_NAME)/bin/$(RELX_REL_NAME)$(RELX_REL_EXT) \ - eval "io:format(\"~p~n\", [c:lm()])" + eval "io:format(\"~p~n\", [c:lm()])." endif help:: |