mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
15 lines
230 B
Python
15 lines
230 B
Python
|
#! /usr/bin/python
|
||
|
|
||
|
import sys
|
||
|
from subprocess import Popen, PIPE
|
||
|
|
||
|
cmd = ["darcs", "whatsnew", "-l"]
|
||
|
p = Popen(cmd, stdout=PIPE)
|
||
|
output = p.communicate()[0]
|
||
|
print output
|
||
|
if output == "No changes!\n":
|
||
|
sys.exit(0)
|
||
|
sys.exit(1)
|
||
|
|
||
|
|