From 7a0e9c0b6930ff49d7c6d640721b440543cf3d8e Mon Sep 17 00:00:00 2001 From: Aaron Trudeau <36064197+trudeaua21@users.noreply.github.com> Date: Mon, 17 Jan 2022 13:58:59 -0500 Subject: [PATCH] change apt-get version check message --- dist/entrypoint.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dist/entrypoint.sh b/dist/entrypoint.sh index aa32b19..07f76a8 100755 --- a/dist/entrypoint.sh +++ b/dist/entrypoint.sh @@ -11,8 +11,7 @@ mkdir -p "$ACTIVATE_LICENSE_PATH" # Check if apt-get is available if in package mode (if not, we must abort since we need to install jq) # if [ "$PACKAGE_MODE" = "true" ]; then - echo "Running tests on a Unity package rather than a Unity project." - echo "Checking if apt-get is installed." + echo "Checking if apt-get is installed to install jq." apt-get --version > /dev/null 2>&1 if [ $? -ne 0 ]; then echo "apt-get is not installed. Aborting..."