From d964a3ba92f028880a37a918ec335524c7b904df Mon Sep 17 00:00:00 2001 From: Paul Spooren Date: Fri, 9 Oct 2020 15:28:51 -1000 Subject: [PATCH] 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 --- utils/vim/test.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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