[gnome-builder] flatpak: fix location of user installation



commit 19956b43646ab95bd3ed5c12cd18788efc9beb1e
Author: Christian Hergert <chergert redhat com>
Date:   Mon May 3 10:22:33 2021 -0700

    flatpak: fix location of user installation
    
    We do not need to add "repo" to this path, Flatpak looks for that
    internally without our reference to it.

 src/plugins/flatpak/daemon/ipc-flatpak-service-impl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/plugins/flatpak/daemon/ipc-flatpak-service-impl.c 
b/src/plugins/flatpak/daemon/ipc-flatpak-service-impl.c
index 277de4811..21c7461e1 100644
--- a/src/plugins/flatpak/daemon/ipc-flatpak-service-impl.c
+++ b/src/plugins/flatpak/daemon/ipc-flatpak-service-impl.c
@@ -912,7 +912,7 @@ ipc_flatpak_service_impl_constructed (GObject *object)
 
   G_OBJECT_CLASS (ipc_flatpak_service_impl_parent_class)->constructed (object);
 
-  user_file = g_file_new_build_filename (g_get_home_dir (), ".local", "share", "flatpak", "repo", NULL);
+  user_file = g_file_new_build_filename (g_get_home_dir (), ".local", "share", "flatpak", NULL);
   if ((user = flatpak_installation_new_for_path (user_file, TRUE, NULL, NULL)))
     add_installation (self, user, NULL);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]