0
0
mirror of https://github.com/openwrt/packages.git synced 2025-07-19 07:24:29 +00:00
Files
packages/mail/msmtp/test.sh
Josef Schlehofer edc4321420 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>
2024-05-24 00:05:20 +02:00

8 lines
107 B
Bash

#!/bin/sh
case "$1" in
msmtp)
msmtp --version | grep "$2"
;;
esac