diff piecrust/commands/base.py @ 466:456db44dcc53

bake: Pass the config variants and values from the CLI to the baker. TODO: add support for that for the processor pipeline.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 11 Jul 2015 23:51:02 -0700
parents c2ca72fb7f0b
children 3ceeca7bb71c
line wrap: on
line diff
--- a/piecrust/commands/base.py	Sat Jul 11 20:33:55 2015 -0700
+++ b/piecrust/commands/base.py	Sat Jul 11 23:51:02 2015 -0700
@@ -12,6 +12,8 @@
         self.app = app
         self.parser = parser
         self.args = args
+        self.config_variant = None
+        self.config_values = None
 
 
 class ChefCommand(object):