From: Josef Schlehofer Date: Thu, 23 May 2024 22:05:20 +0000 (+0200) Subject: msmtp: add test.sh X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=edc43214205572a0b2a378386597795ec351c629;p=openwrt-packages.git msmtp: add test.sh This file ensures that msmtp is run tested inside GitHub Actions to help to ensure that this application is compiled and run tested for OpenWrt master. Signed-off-by: Josef Schlehofer --- diff --git a/mail/msmtp/test.sh b/mail/msmtp/test.sh new file mode 100644 index 000000000..aa62b107c --- /dev/null +++ b/mail/msmtp/test.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +case "$1" in + msmtp) + msmtp --version | grep "$2" + ;; +esac