From 0ed09a437a42fff0bd0de0582011e6a2a3a4fd40 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Fri, 17 Apr 2020 19:48:00 +0000 Subject: Fix history links since the change of architecture --- autobuild/history.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autobuild/history.php b/autobuild/history.php index a9ac27b..c74b0b9 100644 --- a/autobuild/history.php +++ b/autobuild/history.php @@ -14,8 +14,7 @@ while ($entry = $result->fetchArray(SQLITE3_ASSOC)) { $run = $entry['run']; $build_result = $entry['Name']; echo "$run "; - $base_dir = "cauldron/x86_64/core/$run"; - if ($link = glob("$base_dir/$package-*.src.rpm/")) { + if ($link = glob("cauldron/*/core/$run/$package-*.src.rpm/")) { echo "$build_result
\n"; } else { echo "$build_result
\n"; -- cgit v1.2.1