This website works better with JavaScript.
Home
Help
Sign In
LILiK
/
openwrt-packages-dist
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23334
Commits
1
Branch
46 MiB
Tree:
dad658c35f
lilik-openwrt-22.03
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from 'dad658c35f'
${ noResults }
openwrt-packages-dist
/
utils
/
vim
/
test.sh
7 lines
88 B
Raw
Normal View
History
vim: add runtime test Run test script to see if compiled binary prints sane output. Signed-off-by: Paul Spooren <mail@aparcar.org>
4 years ago
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>
4 years ago
#!/bin/sh
case
"
$1
"
in
vim
|
vim-full
|
vim-fuller
)
vim --version
|
grep
"
$2
"
;
;
esac