Skip to content

Commit

Permalink
Move version check from zoneminder.com to repository
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswiggins committed Sep 5, 2013
1 parent c8ad6ae commit e792c8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/zmupdate.pl
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ sub Usage
}
use strict 'subs';
}
my $req = HTTP::Request->new( GET=>'http://www.zoneminder.com/version' );
my $req = HTTP::Request->new( GET=>'https://raw.github.com/chriswiggins/ZoneMinder/master/version' );
my $res = $ua->request($req);

if ( $res->is_success )
Expand Down
2 changes: 1 addition & 1 deletion scripts/zmupdate.pl.in
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ if ( $check && ZM_CHECK_FOR_UPDATES )
}
use strict 'subs';
}
my $req = HTTP::Request->new( GET=>'http://www.zoneminder.com/version' );
my $req = HTTP::Request->new( GET=>'https://raw.github.com/chriswiggins/ZoneMinder/master/version' );
my $res = $ua->request($req);

if ( $res->is_success )
Expand Down
1 change: 1 addition & 0 deletions version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.26.1

0 comments on commit e792c8e

Please sign in to comment.