#!/usr/pkg/bin/python2.7
# This is just a wrapper script for the main Python program
# This script is part of Rubber, which is covered by the GPL license.
# (c) Emmanuel Beffara, 2002
import sys
sys.path.append("/usr/pkg/share/rubber")
try:
	from rubber.cmdline import Main
	sys.exit(Main()(sys.argv[1:]))
except ImportError:
	print "I cannot find the program's modules, I am not installed correctly."
	sys.exit(1)
