diff options
Diffstat (limited to 'source')
-rw-r--r-- | source/01_raw/commits.xsl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/01_raw/commits.xsl b/source/01_raw/commits.xsl index bfc265b..c606030 100644 --- a/source/01_raw/commits.xsl +++ b/source/01_raw/commits.xsl @@ -13,10 +13,12 @@ <target mode="plain" value="commits.xml"/> </xsl:variable> +<xsl:variable name="commit_count">20</xsl:variable> + <xsl:template match="repositories/entry"> <entry handle="{@handle}"> <xsl:copy-of select="InputXSLT:external-command( - concat('./utility/git_log.sh ', path) + concat('./utility/git_log.sh ', path, ' ', $commit_count) )/self::command/commit"/> </entry> </xsl:template> |