@EyeCantCU I'm testing your latest changes to flatpak-setup & this is what I see. grep command outpu
@EyeCantCU I'm testing your latest changes to flatpak-setup & this is what I see.
grep command outputs nothing, with either remove or install list.
INSTALL_LIST=$(echo $FLATPAK_LIST | grep -vf - $INSTALL_LIST_FILE)
INSTALL_LIST=$(echo $FLATPAK_LIST | grep -vf $INSTALL_LIST_FILE) #it should be like this
REMOVE_LIST=$(echo $FLATPAK_LIST | grep -f - $REMOVE_LIST_FILE)
REMOVE_LIST=$(echo $FLATPAK_LIST | grep -f $REMOVE_LIST_FILE) #it should be like this
while it should output Gnome Web in Remove list (on my system).
When setup is ran, it still installs everything, but flatpak has check for installed flatpaks, so it skips it.
grep command outputs nothing, with either remove or install list.
INSTALL_LIST=$(echo $FLATPAK_LIST | grep -vf - $INSTALL_LIST_FILE)
INSTALL_LIST=$(echo $FLATPAK_LIST | grep -vf $INSTALL_LIST_FILE) #it should be like this
REMOVE_LIST=$(echo $FLATPAK_LIST | grep -f - $REMOVE_LIST_FILE)
REMOVE_LIST=$(echo $FLATPAK_LIST | grep -f $REMOVE_LIST_FILE) #it should be like this
while it should output Gnome Web in Remove list (on my system).
When setup is ran, it still installs everything, but flatpak has check for installed flatpaks, so it skips it.




