From d2ccf9429de230e09fd4819aae87e9d278c93124 Mon Sep 17 00:00:00 2001 From: Ulf Wiger Date: Fri, 1 Nov 2019 14:02:01 +0100 Subject: [PATCH] remove debug printouts --- rebar.config.script | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/rebar.config.script b/rebar.config.script index 87c02e4..7e98f6d 100644 --- a/rebar.config.script +++ b/rebar.config.script @@ -1,5 +1,4 @@ %% -*- mode:erlang; erlang-indent-level:4; indent-tabs-mode:nil -*- -io:fwrite("Running ~p~n", [SCRIPT]). case os:getenv("AE_DISABLE_CUCKOO") =/= false of true -> RemoveApps = [aecuckoo, aecuckooprebuilt], @@ -11,10 +10,7 @@ case os:getenv("AE_DISABLE_CUCKOO") =/= false of CONFIG1 = lists:keyreplace(deps, 1, CONFIG, {deps, NewDeps}), Plugins1 = [P || P <- Plugins, not lists:member(element(1,P), RemovePlugins)], - CONFIG2 = lists:keystore(plugins, 1, CONFIG1, {plugins, Plugins1}), - io:fwrite("CONFIG2 = ~p~n", [CONFIG2]), - CONFIG2; + lists:keystore(plugins, 1, CONFIG1, {plugins, Plugins1}); false -> - io:fwrite("Using cuckoo~n", []), CONFIG end.