diff options
author | Corey Berla <corey@berla.me> | 2022-07-16 22:42:33 -0700 |
---|---|---|
committer | António Fernandes <antoniof@gnome.org> | 2022-07-21 21:19:11 +0000 |
commit | b5997110e2054f0c2e74cdaf7f9747399fa8d5a7 (patch) | |
tree | 7dfa1bc5d604b02702b1a66fd41f1ce15120c07b /build-aux | |
parent | 57be6b74cff7b7c6d51b9b893032e9bbbca4554f (diff) | |
download | nautilus-b5997110e2054f0c2e74cdaf7f9747399fa8d5a7.tar.gz |
flatpak: Add access to filesystem /tmp
filesystem=host blacklists /tmp. We are going to want to
save a temporary archive for the Email To function.
If we save it outside of the /tmp directory, it could
end up wasting a lot of disk space. Allow access
to /tmp
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/flatpak/org.gnome.Nautilus.json | 1 | ||||
-rw-r--r-- | build-aux/flatpak/org.gnome.Nautilus.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/build-aux/flatpak/org.gnome.Nautilus.json b/build-aux/flatpak/org.gnome.Nautilus.json index e3610fe3c..d2eb52694 100644 --- a/build-aux/flatpak/org.gnome.Nautilus.json +++ b/build-aux/flatpak/org.gnome.Nautilus.json @@ -16,6 +16,7 @@ "--socket=wayland", "--talk-name=org.gnome.OnlineAccounts", "--filesystem=host", + "--filesystem=/tmp", "--talk-name=org.gtk.vfs", "--talk-name=org.gtk.vfs.*", "--filesystem=xdg-run/gvfsd", diff --git a/build-aux/flatpak/org.gnome.Nautilus.yml b/build-aux/flatpak/org.gnome.Nautilus.yml index f38144943..4a2e3793c 100644 --- a/build-aux/flatpak/org.gnome.Nautilus.yml +++ b/build-aux/flatpak/org.gnome.Nautilus.yml @@ -15,6 +15,7 @@ finish-args: - "--socket=wayland" - "--talk-name=org.gnome.OnlineAccounts" - "--filesystem=host" +- "--filesystem=/tmp" - "--talk-name=org.gtk.vfs" - "--talk-name=org.gtk.vfs.*" - "--filesystem=xdg-run/gvfsd" |