aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-03-03 11:51:25 +0100
committerGitHub <[email protected]>2017-03-03 11:51:25 +0100
commit0438c6c2c5c4a447ab3a47a443968488a0d835eb (patch)
tree09ec3bd3f4a66ab2a9cdf3d1e468352763d4e228 /lib/dialyzer
parent960b4e63c8fcfa8577ac877464e300959f20db12 (diff)
parent209985d1eca6389e363c4dc0dac7c91f9415de28 (diff)
downloadotp-0438c6c2c5c4a447ab3a47a443968488a0d835eb.tar.gz
otp-0438c6c2c5c4a447ab3a47a443968488a0d835eb.tar.bz2
otp-0438c6c2c5c4a447ab3a47a443968488a0d835eb.zip
Merge pull request #1361 from bjorng/bjorn/home-directory/ERL-161/OTP-14249
Use a portable way to lookup the home directory
Diffstat (limited to 'lib/dialyzer')
-rw-r--r--lib/dialyzer/src/dialyzer_plt.erl8
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/dialyzer/src/dialyzer_plt.erl b/lib/dialyzer/src/dialyzer_plt.erl
index 0eda73a208..5ababa43dc 100644
--- a/lib/dialyzer/src/dialyzer_plt.erl
+++ b/lib/dialyzer/src/dialyzer_plt.erl
@@ -234,12 +234,8 @@ contains_mfa(#plt{info = Info, contracts = Contracts}, MFA) ->
get_default_plt() ->
case os:getenv("DIALYZER_PLT") of
false ->
- case os:getenv("HOME") of
- false ->
- plt_error("The HOME environment variable needs to be set " ++
- "so that Dialyzer knows where to find the default PLT");
- HomeDir -> filename:join(HomeDir, ".dialyzer_plt")
- end;
+ {ok,[[HomeDir]]} = init:get_argument(home),
+ filename:join(HomeDir, ".dialyzer_plt");
UserSpecPlt -> UserSpecPlt
end.