diff options
author | Paweł Chmielowski <pchmielowski@process-one.net> | 2017-02-14 14:34:02 +0100 |
---|---|---|
committer | Paweł Chmielowski <pchmielowski@process-one.net> | 2017-02-14 14:39:24 +0100 |
commit | 63da351038429af9e68a6ac632dcc77a48b8cd06 (patch) | |
tree | 8b4f52245a5fa4dbd6f2d5e12d7afe6d75d573c9 | |
parent | Add more check to make xref (diff) |
Fix handling of config.ctc files
-rw-r--r-- | rebar.config.script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rebar.config.script b/rebar.config.script index 7b0873ecb..0ca424116 100644 --- a/rebar.config.script +++ b/rebar.config.script @@ -213,7 +213,7 @@ end, TestConfigFile = filename:join([Cwd, "test", "config.ctc"]), TestConfig = case file:read_file_info(TestConfigFile) of {ok, _} -> - ["-userconfig ct_config_plain ", TestConfigFile, " "]; + [" -userconfig ct_config_plain ", TestConfigFile, " "]; _ -> "" end, |