Add non portable

This commit is contained in:
Joey Yakimowich-Payne 2026-02-24 20:23:45 -07:00
commit 627efbea0a

View file

@ -260,7 +260,7 @@ restore_metadata() {
while IFS= read -r app; do
[ -z "$app" ] && continue
echo " Installing: $app"
flatpak install -y flathub "$app" 2>/dev/null || yellow " Failed: $app"
flatpak install -y --noninteractive flathub "$app" 2>&1 | grep -v $'\e' || yellow " Failed: $app"
done < "$meta_dir/flatpak-apps.txt"
green "Done."
fi