mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
61 lines
1.5 KiB
Perl
61 lines
1.5 KiB
Perl
#!perl
|
|
|
|
#
|
|
# InspIRCd -- Internet Relay Chat Daemon
|
|
#
|
|
# Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
|
|
#
|
|
# This file is part of InspIRCd. InspIRCd is free software: you can
|
|
# redistribute it and/or modify it under the terms of the GNU General Public
|
|
# License as published by the Free Software Foundation, version 2.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
# details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
|
|
open(FH,"<../src/version.sh") or die("Can't open version.sh");
|
|
while (chomp($v = <FH>))
|
|
{
|
|
$version = $v if $v =~ /^echo/;
|
|
}
|
|
close FH;
|
|
|
|
print "Version: '$version'\n";
|
|
|
|
$version =~ /InspIRCd-(\d+)\.(\d+)\.(\d+)([ab\+]|RC|rc)/;
|
|
|
|
$v1 = $1;
|
|
$v2 = $2;
|
|
$v3 = $3;
|
|
$type = $4;
|
|
|
|
print "v1=$1 v2=$2 v3=$3 type=$4\n";
|
|
|
|
if ($type =~ /^[ab]|rc|RC$/)
|
|
{
|
|
$version =~ /InspIRCd-\d+\.\d+\.\d+([ab]|RC|rc)(\d+)/;
|
|
$alphabeta = $2;
|
|
print "Version sub is $type $alphabeta\n";
|
|
$name = "InspIRCd-$v1.$v2.$v3$type$alphabeta.exe";
|
|
$rel = "$v1.$v2.$v3$type$alphabeta";
|
|
}
|
|
else
|
|
{
|
|
$name = "InspIRCd-$v1.$v2.$v3.exe";
|
|
$rel = "$v1.$v2.$v3";
|
|
}
|
|
|
|
print "del $name\n";
|
|
print "ren Setup.exe $name\n";
|
|
|
|
system("del $name");
|
|
system("ren Setup.exe $name");
|
|
|
|
system("upload_release.bat $name $rel");
|