2
0
mirror of https://github.com/boostorg/website.git synced 2026-01-23 18:12:16 +00:00
Files
website/development/snapshot_debug.php
Rene Rivera ea4d4fdfe4 Debug version of tarball generator.
[SVN r39917]
2007-10-11 04:17:24 +00:00

15 lines
447 B
PHP

<?php
/*
Copyright 2007 Redshift Software, Inc.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
*/
$branch=substr($_SERVER["PATH_INFO"],1);
if ($branch)
{
header('Content-type: text/plain');
$file_handle = popen("/home/grafik/www.boost.org/boost_svn_export_archive_debug.sh ".$branch,'rb');
fpassthru($file_handle);
pclose($file_handle);
}
?>