v1.1.1 = Fixed Syntax Issue

Whoops, forgot a `; then`
This commit is contained in:
Zack T
2019-01-31 16:48:42 -07:00
parent a9ffe49bfa
commit 3fa8f3f895
2 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
###################################################################################################
# Script Name: jamf_ea_CrowdStrikeStatus.sh
# By: Zack Thompson / Created: 1/8/2019
# Version: 1.1.0 / Updated: 1/30/2019 / By: ZT
# Version: 1.1.1 / Updated: 1/31/2019 / By: ZT
#
# Description: This script gets the configuration of Crowd Strike, if installed.
#
@@ -29,7 +29,7 @@ returnResult=""
echo "Checking if Crowd Strike is installed..."
if [[ -e "/Library/CS/falconctl" ]]
if [[ -e "/Library/CS/falconctl" ]]; then
# Get the customer ID and compare.
csCustomerID=$( /usr/sbin/sysctl -n cs.customerid 2>&1 )

View File

@@ -3,7 +3,7 @@
###################################################################################################
# Script Name: jamf_ea_CrowdStrikeVersion.sh
# By: Zack Thompson / Created: 1/8/2019
# Version: 1.1.0 / Updated: 1/30/2019 / By: ZT
# Version: 1.1.1 / Updated: 1/31/2019 / By: ZT
#
# Description: This script gets the version of Crowd Strike, if installed.
#
@@ -11,7 +11,7 @@
echo "Checking if Crowd Strike is installed..."
if [[ -e "/Library/CS/falconctl" ]]
if [[ -e "/Library/CS/falconctl" ]]; then
# Querty for the version string
echo "Checking the Crowd Strike Version..."