0
0
mirror of https://github.com/openwrt/packages.git synced 2025-01-31 00:12:09 +00:00
Clark Wang 17d4d05fd5 sexpect: updated per OpenWrt's common practice
- removed extra white spaces in Makefile
- changed license from GPL-3.0 to GPL-3.0-only
- added test.sh

Signed-off-by: Clark Wang <dearvoid@gmail.com>
2022-04-23 17:01:55 +08:00

7 lines
75 B
Bash

#!/bin/sh
out=`$1 --version`
if [ "$out" != "$1 $2" ]; then
exit 1
fi