diff options
author | Bryan Newbold <bnewbold@archive.org> | 2018-08-19 19:20:44 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2018-08-21 20:31:45 -0700 |
commit | f28176e63ee13699e01d180848c32eb8f0ebb337 (patch) | |
tree | fb4589cde9ef3e7daeced687d682830b943bf8b5 /please | |
parent | 6fbe71c0d36012d9096c1f5557aa64a53f6218d5 (diff) | |
download | sandcrawler-f28176e63ee13699e01d180848c32eb8f0ebb337.tar.gz sandcrawler-f28176e63ee13699e01d180848c32eb8f0ebb337.zip |
fix bug with qa/prod detection
Diffstat (limited to 'please')
-rwxr-xr-x | please | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -189,6 +189,7 @@ def main(): sys.exit(-1) if not (args.prod or args.qa) or (args.prod and args.qa): print("must pass one of --prod or --qa") + sys.exit(-1) if args.prod: args.env = "prod" if args.qa: |