summaryrefslogtreecommitdiff
path: root/src/rebar_prv_local_install.erl
diff options
context:
space:
mode:
authorTristan Sloughter <tristan.sloughter@gmail.com>2015-09-27 20:20:42 -0500
committerTristan Sloughter <tristan.sloughter@gmail.com>2015-09-27 20:20:42 -0500
commitcf78543991cd626515624910494865d33ebdf46f (patch)
tree9737d639acd3e64de93cdbc41eae5fc65faf7f2a /src/rebar_prv_local_install.erl
parentf80dd6b88aea839e2a780bad858cb878eeff3df1 (diff)
parent0839efda57d39469cc89c40b03814768f0d538e5 (diff)
Merge pull request #841 from tsloughter/dialyzer_warnings
fix dialyzer warnings
Diffstat (limited to 'src/rebar_prv_local_install.erl')
-rw-r--r--src/rebar_prv_local_install.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_local_install.erl b/src/rebar_prv_local_install.erl
index 172986d..65468a3 100644
--- a/src/rebar_prv_local_install.erl
+++ b/src/rebar_prv_local_install.erl
@@ -82,7 +82,7 @@ extract_escript(State, ScriptPath) ->
{ok, #file_info{mode = _,
uid = Uid,
- gid = Gid}} = file:read_file_info(ScriptPath, [mode, uid, gid]),
+ gid = Gid}} = file:read_file_info(ScriptPath),
?INFO("Writing rebar3 run script ~s...", [BinFile]),
file:write_file(BinFile, bin_contents(OutputDir)),