source: other-projects/nightly-tasks/crons-and-scripts/caveat-emptor/files.php@ 32968

Last change on this file since 32968 was 32968, checked in by ak19, 5 years ago

Kathy noticed that the links to the nightly binaries on the page called latest at caveat-emptor did not have latest/ in their filepath. I've fixed that, and found the php file was not on trac. So I'm now adding it.

File size: 213 bytes
Line 
1<?php
2header("Content-Type: text/plain");
3
4$handle = opendir(".");
5if ( $handle === false ) return;
6
7while ( $file = readdir($handle) ) if ( !preg_match("/^\./", $file) ) {
8 echo "$file\n";
9}
10
11closedir($handle);
Note: See TracBrowser for help on using the repository browser.