Skip to content

Commit

Permalink
Fix brandingBannerDisplayText=false not working
Browse files Browse the repository at this point in the history
  • Loading branch information
drtaru committed Feb 14, 2024
1 parent b2d4519 commit baa9676
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Setup-Your-Mac-via-Dialog.bash
Original file line number Diff line number Diff line change
Expand Up @@ -593,8 +593,11 @@ else
fi


if [[ "${brandingBannerDisplayText}" == "true" ]]; then welcomeBannerText="Happy $( date +'%A' ), ${loggedInUserFirstname}! \nWelcome to your new ${modelName}";
else welcomeBannerText=""; fi
if [[ "${brandingBannerDisplayText}" == "true" ]]; then
welcomeBannerText="Happy $( date +'%A' ), ${loggedInUserFirstname}! \nWelcome to your new ${modelName}"
else
welcomeBannerText=" "
fi
welcomeCaption="Please review the above video, then click Continue."
welcomeVideoID="vimeoid=909473114"

Expand Down Expand Up @@ -809,7 +812,7 @@ message="Please wait while the following apps are installed …"
if [[ "${brandingBannerDisplayText}" == "true" ]] ; then
bannerText="Setting up ${loggedInUserFirstname}‘s ${modelName}";
else
bannerText=""
bannerText=" "
fi

if [ -n "$supportTeamName" ]; then
Expand Down

0 comments on commit baa9676

Please sign in to comment.