Commit d4beb9c7 authored by Julien Muchembled's avatar Julien Muchembled

demo: abort quickly if there's an obvious error

parent e803749b
......@@ -7,6 +7,11 @@ VERBOSE = 4
REGISTRY='10.0.0.2'
CA_DAYS = 1000
# Quick check to avoid wasting time if there is an error.
with open(os.devnull, "wb") as f:
for x in 're6stnet', 're6st-conf', 're6st-registry':
subprocess.check_call(('./py', x, '--help'), stdout=f)
# registry
# |.2
# |10.0.0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment