diff options
author | Loïc Hoguin <[email protected]> | 2015-05-10 12:24:28 +0300 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2015-05-10 12:24:28 +0300 |
commit | d996a413b5fed3bada2fc6ada762292fa7ce0a88 (patch) | |
tree | 5fc4745c6100ab0f97555c97c78e465c05a70adb /plugins | |
parent | 6ec53b3bfd17ecc545c9f2f2c6f3f4e647018c53 (diff) | |
download | erlang.mk-d996a413b5fed3bada2fc6ada762292fa7ce0a88.tar.gz erlang.mk-d996a413b5fed3bada2fc6ada762292fa7ce0a88.tar.bz2 erlang.mk-d996a413b5fed3bada2fc6ada762292fa7ce0a88.zip |
Indent the Erlang snippet
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/relx.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/relx.mk b/plugins/relx.mk index 0794b2e..6ab9460 100644 --- a/plugins/relx.mk +++ b/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))` |