diff options
author | Björn Gustavsson <[email protected]> | 2019-03-18 14:55:38 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2019-03-18 14:55:38 +0100 |
commit | 85f55f610334d4b539e6420a68f80f14d530da8c (patch) | |
tree | 139a701560d04f8e91efcc26548c5ae1797a8742 /lib/compiler/scripts | |
parent | 0faf5d5fbef4976efc25096bd657fd562bf6145f (diff) | |
download | otp-85f55f610334d4b539e6420a68f80f14d530da8c.tar.gz otp-85f55f610334d4b539e6420a68f80f14d530da8c.tar.bz2 otp-85f55f610334d4b539e6420a68f80f14d530da8c.zip |
lib/compiler/scripts/smoke: Force a local hex
The script would hang if no local hex had been installed previously.
Diffstat (limited to 'lib/compiler/scripts')
-rwxr-xr-x | lib/compiler/scripts/smoke | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler/scripts/smoke b/lib/compiler/scripts/smoke index 2429f104c0..ae31c923b8 100755 --- a/lib/compiler/scripts/smoke +++ b/lib/compiler/scripts/smoke @@ -54,6 +54,7 @@ setup_mix() -> ElixirBin = filename:join([SmokeDir,"elixir","bin"]), PATH = ElixirBin ++ ":" ++ os:getenv("PATH"), os:putenv("PATH", PATH), + mix("local.hex --force"), mix("local.rebar --force"), ok. |