25 Jul
2008
25 Jul
'08
8:59 a.m.
On Wed, Jul 23, 2008 at 6:48 AM, Dan McGee <dan@archlinux.org> wrote:
+if [ ! -x "$bin" ]; then + echo "vercmp binary ($bin) could not be located" + exit 1 +fi + +echo "Beginning vercmp tests" +
This does not work when vercmptest is run without arguments and $bin defaults to vercmp. What about doing like in makepkg instead : if [ ! $(type -p "$bin") ]; then