Skip to content

Commit

Permalink
Fixed infobox if statement to trigger and update properly if choosing…
Browse files Browse the repository at this point in the history
… a presetConfiguration with no user input.
  • Loading branch information
drtaru committed May 15, 2023
1 parent 532e504 commit 7d29dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Setup-Your-Mac-via-Dialog.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2822,7 +2822,7 @@ dialogUpdateWelcome "quit:"

outputLineNumberInVerboseDebugMode

if [[ "${symConfiguration}" == *"Catch-all"* || -n "${presetConfiguration}" ]] || [[ -z "${symConfiguration}" ]]; then
if [[ "${symConfiguration}" == *"Catch-all"* ]] || [[ -z "${symConfiguration}" ]] || [[ "${welcomeDialog}" != "userInput" ]]; then

if [[ "${configurationDownloadEstimation}" == "true" ]]; then

Expand Down

0 comments on commit 7d29dc9

Please sign in to comment.