From f1dd08afc8188b5f3304bbd35c0dbe950bbe3816 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 26 Apr 2015 18:03:42 +0200 Subject: [PATCH] build.tt: Fix reference to build.ischannel. It's actually lower-case _despite_ the spelling in the SQL file(s), because the schema auto-generator from DBIx::Class doesn't take it into account because it's working on SQLite and the latter seems to ignore case. Signed-off-by: aszlig --- src/root/build.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/root/build.tt b/src/root/build.tt index c1f223af..8f9c3e36 100644 --- a/src/root/build.tt +++ b/src/root/build.tt @@ -188,7 +188,7 @@ [% IF cachedBuild; INCLUDE renderFullBuildLink build=cachedBuild; ELSE %]unknown[% END %] [% END %] - [% IF (!isAggregate || !build.isChannel) && build.finished; actualBuild = build.iscachedbuild ? cachedBuild : build %] + [% IF (!isAggregate || !build.ischannel) && build.finished; actualBuild = build.iscachedbuild ? cachedBuild : build %] [% IF actualBuild %] Duration: @@ -200,7 +200,7 @@ [% INCLUDE renderDateTime timestamp = build.stoptime; %] [% END %] - [% IF (!isAggregate || !build.isChannel) && buildLogExists(build) %] + [% IF (!isAggregate || !build.ischannel) && buildLogExists(build) %] Logfile: @@ -215,7 +215,7 @@ - [% IF build.isChannel || (build.buildproducts && !isAggregate) %] + [% IF build.ischannel || (build.buildproducts && !isAggregate) %]

Build products