From 2794bc3cf40c634639acd137d2eb5c1a25b96b09 Mon Sep 17 00:00:00 2001 From: Isaac Powell <36595182+DeezyE@users.noreply.github.com> Date: Thu, 28 Oct 2021 15:35:10 +1000 Subject: [PATCH] INSTALL: Fixed GITACTIONS check for null (#2214) --- install | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install b/install index 9e681976a..3b52fdc14 100755 --- a/install +++ b/install @@ -101,7 +101,6 @@ install_linux () { if [ -z "${Distro}" ] ; then fatal "Unable to locate installer for your ${OS} distribution" fi - readonly Distro info "OS Distribution: ${Distro}" info "Installing ${Distro} prerequisite packages..." @@ -276,7 +275,7 @@ main () { echo "#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#" echo - if $GITACTIONS + if [ ! -z ${GITACTIONS:-} ]; then info "Skipping: Running on Github Actions" else