From 57218a5cb20062a8a805a8c47fba868ae82b05e3 Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Thu, 6 May 2021 12:22:22 -0500 Subject: [PATCH] fix: Use which asdf in bootstrap instead of asdf -v --- script/bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/bootstrap b/script/bootstrap index 91aaf9b5..355d748f 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -12,7 +12,7 @@ else export KERL_CONFIGURE_OPTIONS="--disable-hipe --with-ssl=$(brew --prefix openssl)" fi -if ! asdf -v &> /dev/null +if ! which asdf &> /dev/null then echo "WARNING: No asdf. Skipping erlang, elixir, node installation." else @@ -27,4 +27,4 @@ else asdf install fi -mix local.hex --force +mix local.hex --force