mirror of
https://github.com/openwrt/packages.git
synced 2025-07-05 07:43:08 +00:00
Test if gnunet-arm is executable for now. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
8 lines
80 B
Bash
8 lines
80 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"gnunet")
|
|
gnunet-arm --version | grep "$2"
|
|
;;
|
|
esac
|