diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2021-05-07 20:55:25 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2021-05-07 20:55:25 -0600 |
commit | ffdc4bfe1204f911d71b136dbd95784176a44eb6 (patch) | |
tree | 95acddefbb5e34f6a961b3aeb701732a399242af /plugins/command-not-found/command-not-found.plugin.zsh | |
parent | b21e3c4f28d0d55947285dcebf9f91b580384b09 (diff) | |
parent | d646884add277d134235a9b18ab755388d6e0d8d (diff) | |
download | zsh-ffdc4bfe1204f911d71b136dbd95784176a44eb6.tar.gz zsh-ffdc4bfe1204f911d71b136dbd95784176a44eb6.tar.bz2 zsh-ffdc4bfe1204f911d71b136dbd95784176a44eb6.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'plugins/command-not-found/command-not-found.plugin.zsh')
-rw-r--r-- | plugins/command-not-found/command-not-found.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/command-not-found/command-not-found.plugin.zsh b/plugins/command-not-found/command-not-found.plugin.zsh index cbf9a0a8e..3ec13429c 100644 --- a/plugins/command-not-found/command-not-found.plugin.zsh +++ b/plugins/command-not-found/command-not-found.plugin.zsh @@ -38,7 +38,7 @@ fi if [[ -x /usr/libexec/pk-command-not-found ]]; then command_not_found_handler() { if [[ -S /var/run/dbus/system_bus_socket && -x /usr/libexec/packagekitd ]]; then - /usr/libexec/pk-command-not-found -- "$@" + /usr/libexec/pk-command-not-found "$@" return $? fi |