Only install production Theo app if so configured

This commit is contained in:
Lance Edgar 2020-09-26 15:18:51 -05:00
parent c707e2261c
commit 232d8c4613
2 changed files with 6 additions and 1 deletions

View file

@ -27,7 +27,8 @@ def bootstrap_all(c):
Bootstrap all aspects of the machine
"""
bootstrap_base(c)
bootstrap_theo(c)
if env.theo_install_production:
bootstrap_theo(c)
bootstrap_theo_stage(c)