Mercurial > piecrust2
view piecrust/publishing/shell.py @ 624:b45fb2137a07
publish: Add option to change the source for the `rsync` publisher.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 08 Feb 2016 21:29:35 -0800 |
parents | 42da89d8bd51 |
children | 13e8b50a2113 |
line wrap: on
line source
import shlex from piecrust.publishing.base import ShellCommandPublisherBase class ShellCommandPublisher(ShellCommandPublisherBase): PUBLISHER_NAME = 'shell' def _getCommandArgs(self, ctx): target_cmd = self.getConfigValue('command') if not target_cmd: raise Exception("No command specified for publish target: %s" % self.target) args = shlex.split(target_cmd) return args