mirror of
https://github.com/openwrt/packages.git
synced 2025-07-19 07:24:29 +00:00
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>
8 lines
107 B
Bash
8 lines
107 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
msmtp)
|
|
msmtp --version | grep "$2"
|
|
;;
|
|
esac
|