aboutsummaryrefslogtreecommitdiffstats
path: root/test/examples_SUITE.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-06-22 13:09:27 +0200
committerLoïc Hoguin <[email protected]>2016-06-22 13:09:27 +0200
commit99a0e0fc46cacb84d9b9e4da5675639132dff710 (patch)
tree34aa32d2c930f9190aee03ef0f8381af9be63060 /test/examples_SUITE.erl
parent3c7766119d48988b2d168844c0d7fbb654fc2ed8 (diff)
downloadcowboy-99a0e0fc46cacb84d9b9e4da5675639132dff710.tar.gz
cowboy-99a0e0fc46cacb84d9b9e4da5675639132dff710.tar.bz2
cowboy-99a0e0fc46cacb84d9b9e4da5675639132dff710.zip
Move TERM= declaration to make variable side
Diffstat (limited to 'test/examples_SUITE.erl')
-rw-r--r--test/examples_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/examples_SUITE.erl b/test/examples_SUITE.erl
index 5263a6a..b9cc7ba 100644
--- a/test/examples_SUITE.erl
+++ b/test/examples_SUITE.erl
@@ -48,7 +48,7 @@ do_get_paths(Example0) ->
do_compile_and_start(Example) ->
{Dir, Rel, _} = do_get_paths(Example),
%% TERM=dumb disables relx coloring.
- ct:log("~s~n", [os:cmd("cd " ++ Dir ++ " && make distclean && TERM=dumb make all")]),
+ ct:log("~s~n", [os:cmd("cd " ++ Dir ++ " && make distclean && make all TERM=dumb")]),
ct:log("~s~n", [os:cmd(Rel ++ " stop")]),
ct:log("~s~n", [os:cmd(Rel ++ " start")]),
timer:sleep(2000),