summaryrefslogtreecommitdiff
blob: db6cd5b371d07103af3d6ae606ede7cecad08df8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

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