From f0c1804dafa858d00e81f23b7f9efec24c169f33 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 17 Jan 2006 04:15:49 +0000 Subject: add -h/--help svn path=/main/trunk/; revision=2565 --- bin/env-update | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'bin/env-update') diff --git a/bin/env-update b/bin/env-update index ec5ddf01e..3db5787d6 100755 --- a/bin/env-update +++ b/bin/env-update @@ -7,5 +7,20 @@ import os,sys os.environ["PORTAGE_CALLER"] = "env-update" sys.path = ["/usr/lib/portage/pym"]+sys.path +def usage(status): + print "Usage: env-update" + print "" + print "See the env-update(1) man page for more info" + sys.exit(status) + +if "-h" in sys.argv or "--help" in sys.argv: + usage(0) + +makelinks=1 + +if len(sys.argv) > 1: + print "!!! Invalid command line options!\n" + usage(1) + import portage -portage.env_update() +portage.env_update(makelinks) -- cgit v1.2.3-1-g7c22