Skip to content

Commit

Permalink
Merge pull request #43 from smashism/patch-2
Browse files Browse the repository at this point in the history
fixing banner_image_path check later in the script
  • Loading branch information
BIG-RAT authored Jun 17, 2021
2 parents bd7db90 + 470e2bc commit 4db955a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion depNotify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ TRIGGER="event"
SELF_SERVICE_PID=$(pgrep -l "Self Service" | cut -d' ' -f1)
echo "$(date "+%a %h %d %H:%M:%S"): Self Service custom branding icon has been loaded. Killing Self Service PID $SELF_SERVICE_PID." >> "$DEP_NOTIFY_DEBUG"
kill "$SELF_SERVICE_PID"
elif [ -f "$BANNER_IMAGE_PATH" ];then
elif [ ! -f "$BANNER_IMAGE_PATH" ];then
BANNER_IMAGE_PATH="/Applications/Self Service.app/Contents/Resources/AppIcon.icns"
fi

Expand Down

0 comments on commit 4db955a

Please sign in to comment.