Yaffs site version 1.1
[yaffs-website] / vendor / ezyang / htmlpurifier / release2-tag.php
1 <?php
2
3 // Tags releases
4
5 if (php_sapi_name() != 'cli') {
6     echo 'Release script cannot be called from web-browser.';
7     exit;
8 }
9
10 require 'svn.php';
11
12 $svn_info = my_svn_info('.');
13
14 $version = trim(file_get_contents('VERSION'));
15
16 $trunk_url  = $svn_info['Repository Root'] . '/htmlpurifier/trunk';
17 $trunk_tag_url  = $svn_info['Repository Root'] . '/htmlpurifier/tags/' . $version;
18
19 echo "Tagging trunk to tags/$version...";
20 passthru("svn copy --message \"Tag $version release.\" $trunk_url $trunk_tag_url");
21
22 // vim: et sw=4 sts=4