mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
12 lines
172 B
Bash
12 lines
172 B
Bash
#!/bin/sh
|
|
|
|
if ! apk info -eq skim && ! apk info -eq fzf; then
|
|
cat >&2 <<-EOF
|
|
*
|
|
* navi needs either skim fzf to be installed; run e.g. 'apk add skim'.
|
|
*
|
|
EOF
|
|
fi
|
|
|
|
exit 0
|