fix(flatpak-system-install): Re-remove Deck install list

This commit is contained in:
RJ Trujillo 2023-09-09 10:00:09 -06:00
parent abaafa3339
commit 65deb1140b

View File

@ -24,14 +24,6 @@ FLATPAK_LIST=$(flatpak list --column=application)
INSTALL_LIST=$(cat /usr/etc/flatpak/install)
REMOVE_LIST=$(cat /usr/etc/flatpak/remove)
# Add Deck flatpaks to install list
if [[ $IMAGE_NAME =~ "deck" ]]; then
DECK_LIST=$(cat /usr/etc/flatpak/deck)
if [[ -n $DECK_LIST ]]; then
INSTALL_LIST="$INSTALL_LIST\n$DECK_LIST"
fi
fi
# Install flatpaks in list
if [[ -n $INSTALL_LIST ]]; then
for flatpak in $INSTALL_LIST; do