mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-30 06:49:24 +01:00
Made to remove the former installation to stop any confusion from occurring.
This commit is contained in:
parent
14ab800a13
commit
b96dab0a03
12
setup.py
12
setup.py
@ -36,14 +36,26 @@ if sys.version_info < (2, 3, 0):
|
|||||||
sys.exit(-1)
|
sys.exit(-1)
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
|
import shutil
|
||||||
import os.path
|
import os.path
|
||||||
|
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
from distutils.sysconfig import get_python_lib
|
||||||
|
|
||||||
srcFiles = glob.glob(os.path.join('src', '*.py'))
|
srcFiles = glob.glob(os.path.join('src', '*.py'))
|
||||||
otherFiles = glob.glob(os.path.join('others', '*.py'))
|
otherFiles = glob.glob(os.path.join('others', '*.py'))
|
||||||
pluginFiles = glob.glob(os.path.join('plugins', '*.py'))
|
pluginFiles = glob.glob(os.path.join('plugins', '*.py'))
|
||||||
|
|
||||||
|
# This is a terrible hack.
|
||||||
|
previousInstall = os.path.join(get_python_lib(), 'supybot')
|
||||||
|
if os.path.exists(previousInstall):
|
||||||
|
try:
|
||||||
|
shutil.rmtree(previousInstall)
|
||||||
|
except Exception, e:
|
||||||
|
print 'Couldn\'t remove former installation: %s' % e
|
||||||
|
print 'Remove by hand and then run this script.'
|
||||||
|
sys.exit(-1)
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
# Metadata
|
# Metadata
|
||||||
name='supybot',
|
name='supybot',
|
||||||
|
Loading…
Reference in New Issue
Block a user