From eb4176987a3c3528b63897e156b8c05893223374 Mon Sep 17 00:00:00 2001 From: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com> Date: Thu, 30 May 2024 10:21:34 +0000 Subject: [PATCH] fix: do not disable shellcheck errors annotated with FIXME --- installer.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/installer.sh b/installer.sh index 1ec9d45..89d6ab4 100755 --- a/installer.sh +++ b/installer.sh @@ -122,9 +122,8 @@ function waConfigureApps() { APPS+=("$FULL_NAME ($F)") INSTALLED_EXES+=("$(echo "${WIN_EXECUTABLE##*\\}" | tr '[:upper:]' '[:lower:]')") done < <(sed 's/\r/\n/g' < "$HOME/.local/share/winapps/installed") - # FIXME - # shellcheck disable=SC2207,SC2031 - IFS=$'\n' APPS=($(sort <<<"${APPS[*]}")) + IFS=$'\n' + APPS=($(sort <<<"${APPS[*]}")) unset IFS OPTIONS=("Set up all detected pre-configured applications" "Select which pre-configured applications to set up" "Do not set up any pre-configured applications")