From 697402da24ca930b3608359a61b9872fdddc62d9 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 7 Feb 2008 12:08:55 -0500 Subject: Starting off the certmaster tree with most of the func code, shortly non-certmaster related parts will be removed, and other small parts added/tweaked --- scripts/func | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 scripts/func (limited to 'scripts/func') diff --git a/scripts/func b/scripts/func new file mode 100755 index 0000000..925d6ad --- /dev/null +++ b/scripts/func @@ -0,0 +1,14 @@ +#!/usr/bin/python + +import sys +import distutils.sysconfig + +# sys.path.append("%s/func" % distutils.sysconfig.get_python_lib()) + +import func.overlord.func_command as func_command + +myname, argv = sys.argv[0], sys.argv[1:] +cli = func_command.FuncCommandLine() +cli.parse(argv) + + -- cgit