From 44202db33db6d8a2d31fa452dcedc6b0042940f6 Mon Sep 17 00:00:00 2001 From: Christine Spang Date: Tue, 28 Feb 2017 15:42:23 -0800 Subject: [PATCH] [none] Make deploy-it support -h/--help --- deploy-it | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy-it b/deploy-it index b94d81970..d0813bb4e 100755 --- a/deploy-it +++ b/deploy-it @@ -7,7 +7,7 @@ import sys import subprocess -if len(sys.argv) != 2: +if len(sys.argv) != 2 or sys.argv[1] in ('-h', '--help'): print "deploy-it is the script we use to deploy changes to our N1 backend systems." print "usage: deploy-it environment" sys.exit(-1)