From 72aff30b11124a8175caaf5fba1459dd758f810e Mon Sep 17 00:00:00 2001 From: mattmcw Date: Mon, 13 Dec 2021 15:50:54 -0500 Subject: [PATCH] Update the language in the deps.sh script --- scripts/deps.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/deps.sh b/scripts/deps.sh index d978cb0..2124cc5 100644 --- a/scripts/deps.sh +++ b/scripts/deps.sh @@ -24,7 +24,9 @@ for dep in ${DEPS[@]}; do echo "For more information about how to install admesh https://github.com/admesh/admesh" echo "OR https://www.howtoinstall.me/ubuntu/18-04/admesh/" fi - echo "Individual .scad files can be compiled directly without this script" + if [[ "${dep}" == "openscad" ]]; then + echo "Individual .scad files can be compiled directly without this script" + fi exit 1 fi done