From f83e312ee1581030946b28f207d71971910d5bd4 Mon Sep 17 00:00:00 2001 From: Eric Warehime Date: Mon, 2 May 2022 21:44:53 -0700 Subject: [PATCH] Add install_buildtools.sh to check_deps.sh error message (#3921) --- scripts/check_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_deps.sh b/scripts/check_deps.sh index ea178fbb54..4752108a29 100755 --- a/scripts/check_deps.sh +++ b/scripts/check_deps.sh @@ -70,7 +70,7 @@ if [ $MISSING -eq 0 ] then echo "$GREEN_FG[$0]$END_FG_COLOR Required dependencies installed." else - echo -e "$RED_FG[$0]$END_FG_COLOR Required dependencies missing. Run \`${TEAL_FG}./scripts/configure_dev.sh$END_FG_COLOR\` to install." + echo -e "$RED_FG[$0]$END_FG_COLOR Required dependencies missing. Run \`${TEAL_FG}./scripts/configure_dev.sh$END_FG_COLOR\` and/or \`${TEAL_FG}./scripts/buildtools/install_buildtools.sh$END_FG_COLOR\` to install." exit 1 fi