mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-26 13:59:47 +01:00
VERSION: minor clean-up
This commit is contained in:
parent
02285c51fd
commit
fb9117b6aa
@ -23,7 +23,7 @@ BEGIN {
|
|||||||
|
|
||||||
use LWP::UserAgent;
|
use LWP::UserAgent;
|
||||||
|
|
||||||
# These are set automatically by the build/commit script
|
# These are set automatically by build/update_version.pl
|
||||||
use constant {
|
use constant {
|
||||||
BUILD_NAME => "PBot",
|
BUILD_NAME => "PBot",
|
||||||
BUILD_REVISION => 2841,
|
BUILD_REVISION => 2841,
|
||||||
@ -56,7 +56,7 @@ sub version_cmd {
|
|||||||
my $ua = LWP::UserAgent->new(timeout => 10);
|
my $ua = LWP::UserAgent->new(timeout => 10);
|
||||||
my $response = $ua->get($url);
|
my $response = $ua->get($url);
|
||||||
|
|
||||||
return "Unable to get version information: " . $response->status_line if (not $response->is_success);
|
return "Unable to get version information: " . $response->status_line if not $response->is_success;
|
||||||
|
|
||||||
my $text = $response->decoded_content;
|
my $text = $response->decoded_content;
|
||||||
my ($version, $date) = $text =~ m/^\s+BUILD_REVISION => (\d+).*^\s+BUILD_DATE\s+=> "([^"]+)"/ms;
|
my ($version, $date) = $text =~ m/^\s+BUILD_REVISION => (\d+).*^\s+BUILD_DATE\s+=> "([^"]+)"/ms;
|
||||||
|
Loading…
Reference in New Issue
Block a user