Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=f24437d70998a894059dee1a0e19989920139308
commit f24437d70998a894059dee1a0e19989920139308 Author: Miklos Vajna <[email protected]> Date: Fri Aug 26 01:27:35 2011 +0200 dg: never invoke git push --tags It just causes problems, in the rare cases when it's needed, it's better to do so manually. diff --git a/darcs-git.py b/darcs-git.py index 68f237b..c4d8681 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -686,11 +686,6 @@ Options: ret = os.system("git push %s" % options.gitopts) if ret: return(1) - sock = os.popen("git push --tags --dry-run 2>&1") - buf = sock.read() - sock.close() - if buf.strip() != "Everything up-to-date": - os.system("git push --tags %s" % options.gitopts) return(0) def pull(argv): _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
