Browse Source

Fix invalid relx.config path on Windows

Loïc Hoguin 8 years ago
parent
commit
0049f6501d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/relx.mk

+ 1 - 1
plugins/relx.mk

@@ -57,7 +57,7 @@ run:
 else
 
 define get_relx_release.erl
-	{ok, Config} = file:consult("$(RELX_CONFIG)"),
+	{ok, Config} = file:consult("$(call core_native_path,$(RELX_CONFIG))"),
 	{release, {Name, Vsn0}, _} = lists:keyfind(release, 1, Config),
 	Vsn = case Vsn0 of
 		{cmd, Cmd} -> os:cmd(Cmd);