Browse Source

Indent the Erlang snippet

Loïc Hoguin 10 years ago
parent
commit
d996a413b5
1 changed files with 4 additions and 4 deletions
  1. 4 4
      plugins/relx.mk

+ 4 - 4
plugins/relx.mk

@@ -54,10 +54,10 @@ run:
 else
 
 define get_relx_release.erl
-{ok, Config} = file:consult("$(RELX_CONFIG)"),
-{release, {Name, _}, _} = lists:keyfind(release, 1, Config),
-io:format("~s", [Name]),
-halt(0).
+	{ok, Config} = file:consult("$(RELX_CONFIG)"),
+	{release, {Name, _}, _} = lists:keyfind(release, 1, Config),
+	io:format("~s", [Name]),
+	halt(0).
 endef
 
 RELX_RELEASE = `$(call erlang,$(get_relx_release.erl))`