From a2dcb4dc84864e0b090958e2c7a21eb6ac65f10c Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Thu, 16 Oct 2014 14:14:27 +0000 Subject: [PATCH] * make sure to ignore Short movies from internal index (to reduce messing with similarly named good movies) --- BuildData.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildData.groovy b/BuildData.groovy index 05433285..1dd901fe 100644 --- a/BuildData.groovy +++ b/BuildData.groovy @@ -163,7 +163,7 @@ movies = tmdb.findResults{ movies = treeSort(movies, { it[3, 2].join(' ') }) // sanity check -if (movies.size() < 40000) { die('Movie index sanity failed:' + movies.size()) } +if (movies.size() < 35000) { die('Movie index sanity failed:' + movies.size()) } pack(moviedb_out, movies*.join('\t'))