fix: do not disable shellcheck errors annotated with FIXME

This commit is contained in:
Oskar Manhart 2024-05-30 10:21:34 +00:00 committed by GitHub
parent f773560ca8
commit eb4176987a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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")