Skip to content

Commit

Permalink
htmlify: document the build process in the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Feb 21, 2015
1 parent 96d4af2 commit cb7856f
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions htmlify.p6
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,19 @@ use v6;
# This script isn't in bin/ because it's not meant to be installed.
# For syntax highlighting, needs pygmentize version 2.0 or newer installed
#
# Build logs of this script for docs.perl6.org can be found here:
# http://doc.perl6.org/build-log/
# for doc.perl6.org, the build process goes like this:
# * a cron job on hack.p6c.org as user 'doc.perl6.org' triggers the rebuild.
# It looks like this:
#
# */5 * * * * flock -n ~/update.lock -c ./doc/util/update-and-sync > update.log 2>&1
#
# util/update-and-sync is under version control in the perl6/doc repo (same as
# this file), and it first updtes the git repository. If something changed, it
# run htmlify, captures the output, and on success, syncs both the generated
# files and the logs. In case of failure, only the logs are synchronized.
#
# The build logs are available at http://doc.perl6.org/build-log/
#

BEGIN say 'Initializing ...';

Expand Down

0 comments on commit cb7856f

Please sign in to comment.