NAME
Dist::Zilla::Plugin::Run - Running external commands on specific hooks of Dist::Zilla
VERSION
version 0.009
SYNOPSIS
[Run::BeforeRelease]
run = script/myapp_before1.pl %s
run = script/myapp_before2.pl %n %v
[Run::Release]
run = script/myapp_deploy1.pl %s
run = deployer.pl --dir %d --tgz %a --name %n --version %v
[Run::AfterRelease]
run = script/myapp_after.pl %s %v
DESCRIPTION
Run arbitrary commands at various Dist::Zilla phases.
CONVERSIONS
The following conversions/format specifiers are defined for passing as arguments to the specified commands (though not all values are available at all phases).
%a
the archive of the release (available to all*Release
phases)%d
the directory in which the dist was built (not inBeforeBuild
)%n
the dist name%v
the dist version
Additionally %s
is retained for backward compatibility. Each occurrence is replaced by a different value (like the regular sprintf
function). Individual plugins define their own values for the positional replacement of %s
.
AUTHOR
Torsten Raudssus <torsten@raudssus.de> http://www.raudssus.de/
COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Raudssus Social Software.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.