You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/pry/files/pry-0.2.1-exit-status.patch

14 lines
263 B

--- pry-0.2.1/pry
+++ pry-0.2.1/pry
@@ -108,6 +108,10 @@
else:
r._run(output, options.benchmark)
output.final(r)
+ if r.allErrors():
+ sys.exit(1)
+ else:
+ sys.exit()
if __name__ == "__main__":