mirror of
https://github.com/anope/anope.git
synced 2026-07-05 20:23:11 +02:00
BUILD : 1.7.3 (176) BUGS : NOTES : Added check to make sure register script was being run from within the bin/ directory. If ./bin/register was used, the path to cache file would be incorrect (../config.cache)
git-svn-id: svn://svn.anope.org/anope/trunk@176 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@123 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
348ae63579
commit
ef536a1816
+6
-1
@@ -14,7 +14,7 @@ REGCACHE="register.cache"
|
||||
SENDMAIL="/usr/sbin/sendmail"
|
||||
|
||||
# SCRIPT VERSION NUMBER (DO NOT ALTER)
|
||||
REGISTERVERSION="1.1"
|
||||
REGISTERVERSION="1.2"
|
||||
|
||||
# DO NOT CHANGE IF YOU WANT TO REGISTER WITH ANOPE
|
||||
REGISTRYADDRESS="register@anope.org"
|
||||
@@ -24,6 +24,11 @@ REGISTRYADDRESS="register@anope.org"
|
||||
# YOU ARE NOT REQUIRED TO CHANGE ANYTHING BELOW
|
||||
################################################
|
||||
|
||||
if [ $0 != "./register" ] ; then
|
||||
echo "Warning: Run this file while in the /bin/ directory (e.g. ./register)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -f $CACHEFILE ] ; then
|
||||
echo "Warning: Configuration cache file missing. Run ./configure"
|
||||
exit 1
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="3"
|
||||
VERSION_BUILD="174"
|
||||
VERSION_BUILD="176"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.3 (176)
|
||||
# BUGS :
|
||||
# NOTES : Added check to make sure register script was being run from within the bin/ directory. If ./bin/register was used, the path to cache file would be incorrect (../config.cache)
|
||||
#
|
||||
# BUILD : 1.7.3 (174)
|
||||
# BUGS :
|
||||
# NOTES : Sorry, another changes file mistake, remember to have a fullstop at the end, AND bug number as [#00] if there is no bug
|
||||
|
||||
Reference in New Issue
Block a user