diff options
author | 2005-06-18 01:01:35 +0000 | |
---|---|---|
committer | 2005-06-18 01:01:35 +0000 | |
commit | 9dcd7f29a396103523739171e4dfe8ec24cc98f5 (patch) | |
tree | cac7d036214465c39696da8f0986d840250b024e /bin | |
parent | remove reference to non-existant profiles/use.mask (diff) | |
download | portage-cvs-9dcd7f29a396103523739171e4dfe8ec24cc98f5.tar.gz portage-cvs-9dcd7f29a396103523739171e4dfe8ec24cc98f5.tar.bz2 portage-cvs-9dcd7f29a396103523739171e4dfe8ec24cc98f5.zip |
report exit status if gpg failed
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/repoman | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman index 4750785..d9f0023 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1,7 +1,7 @@ #!/usr/bin/python -O # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/bin/repoman,v 1.111 2005/03/07 04:14:36 ferringb Exp $ +# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/bin/repoman,v 1.112 2005/06/18 01:01:35 vapier Exp $ # Next to do: dep syntax checking in mask files # Then, check to make sure deps are satisfiable (to avoid "can't find match for" problems) @@ -1388,6 +1388,8 @@ else: rValue = os.system(gpgcmd+" "+filename) if rValue == 0: os.rename(filename+".asc", filename) + else: + print "!!! gpg exited with '" + str(rValue) + "' status" return rValue mychanges=[] |