We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f04b8b0 commit b0c034aCopy full SHA for b0c034a
1 file changed
install.sh
@@ -107,8 +107,13 @@ main() {
107
108
if unzip_available; then
109
install_otp &
110
+ pid_otp=$!
111
+
112
install_elixir &
- wait
113
+ pid_elixir=$!
114
115
+ wait $pid_otp
116
+ wait $pid_elixir
117
else
118
# if unzip is missing (e.g. official docker ubuntu image), install otp and elixir
119
# serially because we unzip elixir using OTP zip:extract/2.
0 commit comments