From 7f1906dba7ba7c33cadb5af4a08f48cb47370b1d Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Tue, 11 Oct 2022 17:21:21 -0300 Subject: ktorrent.profile: fix mkfile without mkdir firejail fails to create the following files: * ~/.kde/share/config/ktorrentrc * ~/.kde4/share/config/ktorrentrc Because it does not create the preceding directories beforehand: * ~/.kde/share/config * ~/.kde4/share/config Relates to #5414. --- etc/profile-a-l/ktorrent.profile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etc/profile-a-l/ktorrent.profile b/etc/profile-a-l/ktorrent.profile index 949189a1d..f34d1ccec 100644 --- a/etc/profile-a-l/ktorrent.profile +++ b/etc/profile-a-l/ktorrent.profile @@ -22,7 +22,9 @@ include disable-programs.inc include disable-shell.inc mkdir ${HOME}/.kde/share/apps/ktorrent +mkdir ${HOME}/.kde/share/config mkdir ${HOME}/.kde4/share/apps/ktorrent +mkdir ${HOME}/.kde4/share/config mkdir ${HOME}/.local/share/ktorrent mkdir ${HOME}/.local/share/kxmlgui5/ktorrent mkfile ${HOME}/.config/ktorrentrc -- cgit v1.2.3-54-g00ecf