diff options
-rw-r--r-- | share/trashman/trashman/functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/trashman/trashman/functions b/share/trashman/trashman/functions index f4dfe42..83ef0cf 100644 --- a/share/trashman/trashman/functions +++ b/share/trashman/trashman/functions @@ -77,7 +77,7 @@ trashman_actions_folder() { local ancestor="`trashman_ancestor`" local family="`trashman_family`" local distro="`trashman_distro`" - local findopts="-maxdepth 1 -type f -executable -exec basename {}" + local findopts="-maxdepth 1 -type f -executable -follow -exec basename {}" if [ -z "$package" ]; then return @@ -117,7 +117,7 @@ trashman_actions_folder() { # Return the list of available actions from a package trashman_actions() { local package="$1" - local findopts="-maxdepth 1 -type f -executable -exec basename {}" + local findopts="-maxdepth 1 -type f -executable -follow -exec basename {}" if [ -z "$package" ]; then return |