The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Chronicle::Plugin::PostBuild - Execute commands after building the blog

DESCRIPTION

This module exists to provide compatibility with previous releases of chronicle, which allowed the user to specify commands to be executed after the blog had been generated.

If your configuration file defines a command to execute after building your blog this module will ensure it is executed.

For example you might write this in your configuration file:

  post-build = rsync -vazr output/ user@remote:htdocs/

Multiple commands may be defined, and they will be executed in the order listed.

METHODS

Now follows documentation on the available methods.

on_generate

The on_generate method is automatically invoked to generate output pages. This particular plugin method is invoked after any on_initiate methods which might be present.

This method merely looks for defined post-build commands, and if any are encountered they are executed via system.

_order

We ensure that this plugin is invoked last by setting a priority of 999, which is greater than the default supported by Module::Pluggable::Ordered.