fix: this is just a warning, we can ignore it for now

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

View File

@ -123,6 +123,7 @@ function waConfigureApps() {
INSTALLED_EXES+=("$(echo "${WIN_EXECUTABLE##*\\}" | tr '[:upper:]' '[:lower:]')") INSTALLED_EXES+=("$(echo "${WIN_EXECUTABLE##*\\}" | tr '[:upper:]' '[:lower:]')")
done < <(sed 's/\r/\n/g' < "$HOME/.local/share/winapps/installed") done < <(sed 's/\r/\n/g' < "$HOME/.local/share/winapps/installed")
IFS=$'\n' IFS=$'\n'
# shellcheck disable=SC2207
APPS=($(sort <<<"${APPS[*]}")) APPS=($(sort <<<"${APPS[*]}"))
unset IFS 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") OPTIONS=("Set up all detected pre-configured applications" "Select which pre-configured applications to set up" "Do not set up any pre-configured applications")