diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2016-11-20 21:40:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-20 21:40:54 -0500 |
commit | 8c4da25be01969d2392ed8229cccfda42316c306 (patch) | |
tree | c10cd279eacf1a2af637d42f8b2a876da991c7a3 /src/rebar_erlc_compiler.erl | |
parent | ca0995b73b104964ab20ceed440aa323976cbc09 (diff) | |
parent | e85cf555e24b2a4b9b8681b9028c87826a2c0ea6 (diff) |
Merge pull request #1381 from ferd/fix-dialyzer-warnings
Fix rebar3 dialyzer warnings
Diffstat (limited to 'src/rebar_erlc_compiler.erl')
-rw-r--r-- | src/rebar_erlc_compiler.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/rebar_erlc_compiler.erl b/src/rebar_erlc_compiler.erl index 36a247e..d580792 100644 --- a/src/rebar_erlc_compiler.erl +++ b/src/rebar_erlc_compiler.erl @@ -573,9 +573,11 @@ compile_mib(AppInfo) -> MibToHrlOpts = case proplists:get_value(verbosity, AllOpts, undefined) of undefined -> - #options{specific = []}; + #options{specific = [], + cwd = rebar_dir:get_cwd()}; Verbosity -> - #options{specific = [{verbosity, Verbosity}]} + #options{specific = [{verbosity, Verbosity}], + cwd = rebar_dir:get_cwd()} end, ok = snmpc:mib_to_hrl(Mib, Mib, MibToHrlOpts), rebar_file_utils:mv(HrlFilename, AppInclude), |