You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to use --share on files or directories in the home directory, they are not shared. With the share target --share=$HOME/.local/share/gnome-shell/extensions, these lines are generated in containerrc:
The -T flag was added in 514817f and a2a3a90 to deal with issue #384. Unless I'm missing something, the second commit is incorrect. The line in question should be changed to one of these two options:
When attempting to use
--share
on files or directories in the home directory, they are not shared. With the share target--share=$HOME/.local/share/gnome-shell/extensions
, these lines are generated incontainerrc
:This results in the error:
Based on
ln
's man page, seems like-T
is for specifying the exact name of the symbolic link being created:So I believe the correct command should be one of the following:
The
-T
flag was added in 514817f and a2a3a90 to deal with issue #384. Unless I'm missing something, the second commit is incorrect. The line in question should be changed to one of these two options:I'd choose the second option, since it is less ambiguous.
In the meantime, a workaround is using
--runasuser
, e.g.The text was updated successfully, but these errors were encountered: