diff options
author | Paul Spooren <mail@aparcar.org> | 2020-10-09 15:28:51 -1000 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2020-10-09 15:54:04 -1000 |
commit | d964a3ba92f028880a37a918ec335524c7b904df (patch) | |
tree | 0546b57f7b2d914e8fdc2410f94f6e470f4ae491 /utils/vim/test.sh | |
parent | d64b945013d92e7a5c8c066af3fd6b186cebad6d (diff) |
vim: run test.sh only for vim{-full,-fuller}
Previously the test.sh script would also run for the `vim-help` package
which isn't a binary package but just a tar archive.
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'utils/vim/test.sh')
-rw-r--r-- | utils/vim/test.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/vim/test.sh b/utils/vim/test.sh index 90d67fb04..913b9c6b1 100644 --- a/utils/vim/test.sh +++ b/utils/vim/test.sh @@ -1,3 +1,7 @@ #!/bin/sh -vim --version | grep "$2" +case "$1" in + vim|vim-full|vim-fuller) + vim --version | grep "$2" + ;; +esac |