summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosef Schlehofer2024-05-23 22:05:20 +0000
committerJosef Schlehofer2024-05-23 22:05:20 +0000
commitedc43214205572a0b2a378386597795ec351c629 (patch)
treec87da43fe7b4f54e808d2d1c4cf044c3f5465199
parent2b2103589177bbba8de7f49a0d917e34696d043d (diff)
downloadpackages-edc43214205572a0b2a378386597795ec351c629.tar.gz
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 <pepe.schlehofer@gmail.com>
-rw-r--r--mail/msmtp/test.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/mail/msmtp/test.sh b/mail/msmtp/test.sh
new file mode 100644
index 0000000000..aa62b107cf
--- /dev/null
+++ b/mail/msmtp/test.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+case "$1" in
+ msmtp)
+ msmtp --version | grep "$2"
+ ;;
+esac