diff options
| author | Josef Schlehofer | 2024-05-23 22:05:20 +0000 |
|---|---|---|
| committer | Josef Schlehofer | 2024-05-23 22:05:20 +0000 |
| commit | edc43214205572a0b2a378386597795ec351c629 (patch) | |
| tree | c87da43fe7b4f54e808d2d1c4cf044c3f5465199 | |
| parent | 2b2103589177bbba8de7f49a0d917e34696d043d (diff) | |
| download | packages-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.sh | 7 |
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 |