You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-board/cgoban2/files/cgoban2

13 lines
331 B

#!/bin/sh
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
which java > /dev/null 2>&1 && \
java -jar INSTALL_DIR/cgoban.jar "${@}" && \
exit 0
echo "No \"java\" binary found in your PATH."
echo "You should run \"java-config\" to choose your default VM."
exit 1