From fd9138e6b141d3144265af4219c672512525270c Mon Sep 17 00:00:00 2001 From: Jorgen Thelin Date: Thu, 30 Apr 2020 17:04:38 -0700 Subject: [PATCH] Fix minor glitch in installer message echo "cmake is already installed" --- images/linux/scripts/installers/cmake.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/linux/scripts/installers/cmake.sh b/images/linux/scripts/installers/cmake.sh index 340df3ee8..0fd839a50 100644 --- a/images/linux/scripts/installers/cmake.sh +++ b/images/linux/scripts/installers/cmake.sh @@ -10,7 +10,7 @@ source $HELPER_SCRIPTS/document.sh # Test to see if the software in question is already installed, if not install it echo "Checking to see if the installer script has already been run" if command -v cmake; then - echo "Example variable already set to $EXAMPLE_VAR" + echo "cmake is already installed" else curl -sL https://cmake.org/files/v3.17/cmake-3.17.0-Linux-x86_64.sh -o cmakeinstall.sh \ && chmod +x cmakeinstall.sh \