From e015f55f875789ba256f5d2a2e25f1ad42af4f92 Mon Sep 17 00:00:00 2001 From: Noah Betzen Date: Fri, 17 Nov 2023 11:19:21 -0800 Subject: [PATCH] Do not ignore stderr output from kerl build Should fix https://github.com/asdf-vm/asdf-erlang/issues/288 while still ignoring stdout as originally desired --- bin/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install b/bin/install index a54afac..87d0235 100755 --- a/bin/install +++ b/bin/install @@ -29,7 +29,7 @@ install_erlang() { # We hide all output from this command so the # "You can activate this installation running the following command:" # that doesn't apply is hidden - $(kerl_path) install "$build_name" "$ASDF_INSTALL_PATH" >/dev/null 2>&1 + $(kerl_path) install "$build_name" "$ASDF_INSTALL_PATH" >/dev/null $(kerl_path) cleanup "$ASDF_INSTALL_VERSION" link_app_executables "$ASDF_INSTALL_PATH"