summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2018-09-23 19:11:15 -0400
committerGitHub <noreply@github.com>2018-09-23 19:11:15 -0400
commit651b54fc1b90c0603b8679a693f6f69b35bacad4 (patch)
treea310bd87374a8a4d50ca8d9899f585db3a002ce8
parent2dfba204e4dea5d1c3821fd26d22bd7201595f6c (diff)
parent0b277cc10e5fa56c773a4f734930253ac9e4f2be (diff)
Merge pull request #1890 from phmx/fix_sample_config
Fix sample config punctuation.
-rw-r--r--rebar.config.sample6
1 files changed, 3 insertions, 3 deletions
diff --git a/rebar.config.sample b/rebar.config.sample
index be3da71..c255e49 100644
--- a/rebar.config.sample
+++ b/rebar.config.sample
@@ -144,7 +144,7 @@
%% == Escript ==
%% name of the main OTP application to boot
-{escript_main_app, application}
+{escript_main_app, application}.
%% Name of the resulting escript executable
{escript_name, "application"}.
%% apps (other than main and deps) to be included
@@ -158,7 +158,7 @@
%% == EUnit ==
%% eunit:test(Tests)
-{eunit_tests, [{application, rebar3}]}
+{eunit_tests, [{application, rebar3}]}.
%% Options for eunit:test(Tests, Opts)
{eunit_opts, [verbose]}.
%% Additional compile options for eunit. erl_opts is also used
@@ -198,7 +198,7 @@
%% Only clean, ct, compile, eunit, release, and tar can be hooked around
%% runs 'clean' before 'compile'
-{provider_hooks, [{pre, [{compile, clean}]}]}
+{provider_hooks, [{pre, [{compile, clean}]}]}.
%% == Releases ==