# HG changeset patch # User Ludovic Chabant # Date 1454994326 28800 # Node ID 42da89d8bd5117372a0fc67c9d4d0788674e38f6 # Parent 5d8e0c8cdb5f3c5d1f80746bb8d615c324b285a1 publish: Change the `shell` config setting name for the command to run. diff -r 5d8e0c8cdb5f -r 42da89d8bd51 piecrust/publishing/shell.py --- a/piecrust/publishing/shell.py Mon Feb 08 20:44:38 2016 -0800 +++ b/piecrust/publishing/shell.py Mon Feb 08 21:05:26 2016 -0800 @@ -6,7 +6,7 @@ PUBLISHER_NAME = 'shell' def _getCommandArgs(self, ctx): - target_cmd = self.getConfigValue('cmd') + target_cmd = self.getConfigValue('command') if not target_cmd: raise Exception("No command specified for publish target: %s" % self.target)