Skip to content

Commit

Permalink
add linux64 to engine list
Browse files Browse the repository at this point in the history
  • Loading branch information
abma committed Mar 3, 2013
1 parent 1b6739b commit eb1c774
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions buildbot/version_list/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ function getFileInfo($os, $regex, $path){

$res = array();
$regexes = array(
"windows" => "/spring_(.*)_minimal-portable.7z$/",
"macosx" => "/[sS]pring_(.*)[_-]MacOSX-.*.zip$/",
"linux" => "/spring_(.*)_minimal-portable-linux-static.7z$/"
"windows" => "/win32\/spring_(.*)_minimal-portable.7z$/",
"macosx" => "/osx64\/[sS]pring_(.*)[_-]MacOSX-.*.zip$/",
"linux" => "/linux\/spring_(.*)_minimal-portable-linux-static.7z$/",
"linux64" => "/linux64\/spring_(.*)_minimal-portable-linux-static.7z$/"
);
while(count($dirs)>0) {
$cur = array_pop($dirs);
Expand All @@ -81,6 +82,6 @@ function getFileInfo($os, $regex, $path){
closedir($dh);
}

$db ->close();
$db->close();
echo json_encode($res);

0 comments on commit eb1c774

Please sign in to comment.