#!/usr/bin/python
# 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/local/share/rubber")
try:
	from rubber.cmd_info import Main
	Main()(sys.argv[1:])
except ImportError:
	print "I cannot find the program's modules, I am not installed correctly."
	sys.exit(1)
