all repos — tint2 @ 3eae1ba9126a6a266ccd7334ba6cdbca6db2d5eb

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

fix release script
Chris Lee @klee93
commit

3eae1ba9126a6a266ccd7334ba6cdbca6db2d5eb

parent

22ce7c54273c51bf2ab56488cfeb9b389838a793

1 files changed, 3 insertions(+), 2 deletions(-)

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

@@ -55,13 +55,14 @@ return s

def run(s): - proc = subprocess.Popen(cmd(s), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, close_fds=True) + proc = subprocess.Popen(cmd(s), shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True) ret = proc.wait() - out = proc.communicate()[0] + out, err = proc.communicate() for line in out.split("\n"): debug(ansi_pinky + line + ansi_reset) debug(ansi_pinky + "Exit code: " + str(ret)) if ret != 0: + print(err) raise Exception("Command failed!") return out