From 060f97b8e7c324f77225490ceb358b617bf9e639 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Fri, 25 Jan 2019 11:00:34 +0000 Subject: [PATCH] Tools: Correct install-prereqs-mac user input text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- Tools/scripts/install-prereqs-mac.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/scripts/install-prereqs-mac.sh b/Tools/scripts/install-prereqs-mac.sh index 4f6993993c..00cfd87488 100755 --- a/Tools/scripts/install-prereqs-mac.sh +++ b/Tools/scripts/install-prereqs-mac.sh @@ -34,7 +34,7 @@ ARDUPILOT_TOOLS="Tools/autotest" exportline="export PATH=$ARDUPILOT_ROOT/$ARDUPILOT_TOOLS:\$PATH"; grep -Fxq "$exportline" ~/.profile 2>/dev/null || { - read -p "Add $ARDUPILOT_ROOT/$ARDUPILOT_TOOLS to your PATH [Y/n]?" -n 1 -r + read -p "Add $ARDUPILOT_ROOT/$ARDUPILOT_TOOLS to your PATH [N/y]?" -n 1 -r if [[ $REPLY =~ ^[Yy]$ ]] ; then echo $exportline >> ~/.profile eval $exportline