From 7e8a3010bb7adf5b3ecbf4604055b682fdbe549b Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 9 Apr 2018 17:19:03 -0700 Subject: [PATCH] Fix bracket matching in previous commit Syntax checks? In a text editor? THAT'S CRAZY TALK Signed-off-by: Adam Williamson --- lib/utils.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils.pm b/lib/utils.pm index 2d325e50..79a8fee2 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -452,8 +452,8 @@ sub gnome_initial_setup { # https://fedoraproject.org//wiki/Changes/ReduceInitialSetupRedundancy # https://bugzilla.redhat.com/show_bug.cgi?id=1474787 , # except 'language' is never *really* skipped (see above) - @nexts = grep {$_ ne 'keyboard'} @nexts if (($version eq 'rawhide' || $version > 27); - @nexts = grep {$_ ne 'timezone'} @nexts if (($version eq 'rawhide' || $version > 27); + @nexts = grep {$_ ne 'keyboard'} @nexts if ($version eq 'rawhide' || $version > 27); + @nexts = grep {$_ ne 'timezone'} @nexts if ($version eq 'rawhide' || $version > 27); } else { # 'timezone' and 'software' are suppressed for the 'existing user'