diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2015-10-27 21:24:20 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2015-10-27 21:24:20 +0100 |
commit | 58f4d1d1c9d9cbaec4cdd0a7292ac9229fe9d837 (patch) | |
tree | 8a5a78d48833ec06a57e88921907a9f4fb25da81 | |
parent | 1e315627937e1059b495281378b4534a810d129d (diff) | |
download | zsh-58f4d1d1c9d9cbaec4cdd0a7292ac9229fe9d837.tar.gz zsh-58f4d1d1c9d9cbaec4cdd0a7292ac9229fe9d837.zip |
Make list of packages which provide code for .zshrc more readable and sort it
-rwxr-xr-x | debian/zsh.bug-script | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/debian/zsh.bug-script b/debian/zsh.bug-script index 1e6687b5a..98249a6d1 100755 --- a/debian/zsh.bug-script +++ b/debian/zsh.bug-script @@ -26,7 +26,18 @@ else TEXT="Packages which provide code meant to be sourced in .zshrc" # Hardcoded list of (future) packages containing code meant to be # sourced in .zshrc - PKGS=$(dpkg-query -W -f '${Package}\n' fizsh oh-my-zsh zsh-antigen autojump zec python-powerline command-not-found environment-modules thefuck 'grml-*' 2>/dev/null) + PKGS=$(dpkg-query -W -f '${Package}\n' \ + autojump \ + command-not-found \ + environment-modules \ + fizsh \ + oh-my-zsh \ + python-powerline \ + thefuck \ + zec \ + zsh-antigen \ + 'grml-*' \ + 2>/dev/null) fi list_packages "$TEXT" $PKGS |