mirror of
https://github.com/ostreedev/ostree.git
synced 2025-03-19 22:50:35 +03:00
lib/repo-finder-mount: Fix path to flatpak repo
OstreeRepoFinderMount checks mounts for a few well-known directories such as "ostree/repo" and ".ostree/repo" to try to find remotes. One of the hard-coded directories is "var/lib/flatpak" but that's the flatpak directory, not the ostree repo used by flatpak, which is at "var/lib/flatpak/repo". So this commit changes the path so the repo can be found. For recent versions of Endless, flatpak uses /ostree/repo as its repository, so this commit won't make a difference there. But it may help on other operating systems. Closes: #1471 Approved by: cgwalters
This commit is contained in:
parent
ee1f6b2315
commit
6db6268dfd
@ -439,7 +439,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
{
|
||||
".ostree/repo",
|
||||
"ostree/repo",
|
||||
"var/lib/flatpak",
|
||||
"var/lib/flatpak/repo",
|
||||
};
|
||||
|
||||
for (i = 0; i < G_N_ELEMENTS (well_known_repos); i++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user