all repos — tint2 @ ffa6e5ba49d1eb2229c45e5ec1848e57d188e02d

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Change new release script to also publish to remote (issue #707)
Chris Lee @klee93
commit

ffa6e5ba49d1eb2229c45e5ec1848e57d188e02d

parent

d1f5a46a734c6201d8d4c4cb27ca93547383fefd

1 files changed, 6 insertions(+), 0 deletions(-)

jump to
M new-release.pynew-release.py

@@ -194,3 +194,9 @@ print "Does this look correct? [y/n]"

choice = raw_input().lower() if choice != "y": run("git reset --hard HEAD~ ; git tag -d %s ; git tag -d %s" % (version, readable_version)) + sys.exit(1) + print "Publish? [y/n]" + choice = raw_input().lower() + if choice != "y": + sys.exit(1) + run("git push origin master && git push --tags origin master")