diff options
author | Trevor Cook <trevor@trevorcook.dev> | 2021-02-27 02:59:52 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-02-27 02:59:52 +0700 |
commit | b2ad6e4796252ba29f18f5538fb0e13fac3c2717 (patch) | |
tree | 953e43df1fa4ea9543e0d3a35cca62ca447134e0 /system | |
parent | 9202b68601a76128ef3c20e9ba90178875914ba7 (diff) |
system/password-store: Fix fish completion.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/password-store/password-store.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/password-store/password-store.SlackBuild b/system/password-store/password-store.SlackBuild index 38d702f3b6e39..770081cb2c0b3 100644 --- a/system/password-store/password-store.SlackBuild +++ b/system/password-store/password-store.SlackBuild @@ -65,7 +65,7 @@ fi # Uncomment the two lines below to install the fish completion file. #mkdir -p "${PKG}/usr/share/fish/completions" -#install -m 0644 -v contrib/pass.fish-completion "${PKG}/usr/share/fish/completions/pass.fish" +#install -m 0644 -v src/completion/pass.fish-completion "${PKG}/usr/share/fish/completions/pass.fish" find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done |