Update binary snapshot to update front page

git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@1266 05730e5d-ab1b-0410-a4ac-84af385074fa
This commit is contained in:
Thorvald Natvig 2008-08-31 14:24:57 +00:00
parent d42e60ef0a
commit bf16e9bd7a

View File

@ -6,6 +6,7 @@ use Carp;
use Switch;
use Archive::Tar;
use Compress::Bzip2;
use LWP::UserAgent;
my %files;
my $ver;
@ -79,3 +80,7 @@ my $bz=bzopen("murmur-static_x86-${ver}.tar.bz2", "w");
$bz->bzwrite($tar->write());
$bz->bzclose();
system("/usr/bin/scp","murmur-static_x86-${ver}.tar.bz2", "xeno\@mix.hive.no:WEB/mumble.hive.no/snapshot/");
my $ua = new LWP::UserAgent;
my $response = $ua->get('http://mumble.info/snapshot.cgi');
print $response->content;