summaryrefslogtreecommitdiff
path: root/src/rebar_utils.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rebar_utils.erl')
-rw-r--r--src/rebar_utils.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar_utils.erl b/src/rebar_utils.erl
index 17fb95a..f49969a 100644
--- a/src/rebar_utils.erl
+++ b/src/rebar_utils.erl
@@ -60,7 +60,8 @@ is_arch(ArchRegex) ->
get_arch() ->
Words = integer_to_list(8 * erlang:system_info(wordsize)),
- erlang:system_info(system_architecture) ++ "-" ++ Words.
+ erlang:system_info(otp_release) ++ "-"
+ ++ erlang:system_info(system_architecture) ++ "-" ++ Words.
%%
%% Options = [Option] -- defaults to [use_stdout, abort_on_error]