Update archive.py

Removed packaging of graphvis and svgweb as part of issue #90 work.
This commit is contained in:
WrinklyNinja
2014-01-29 10:12:00 +00:00
parent 17eb171b12
commit d34ede201b
-6
View File
@@ -6,8 +6,6 @@
# Files and folders that need to go in (relative to repository root):
#
# build/BOSS.exe
# resources/graphvis
# resources/svgweb
# resources/l10n/es/LC_MESSAGES/boss.mo
# resources/l10n/es/LC_MESSAGES/wxstd.mo
# resources/l10n/ru/LC_MESSAGES/boss.mo
@@ -39,10 +37,6 @@ if not os.path.exists(temp_path):
# Now copy everything into the temporary folder.
shutil.copy( os.path.join('..', 'build', 'BOSS.exe'), temp_path )
shutil.copytree( os.path.join('..', 'resources', 'graphvis'), os.path.join(temp_path, 'resources', 'graphvis') )
shutil.copytree( os.path.join('..', 'resources', 'svgweb'), os.path.join(temp_path, 'resources', 'svgweb') )
os.makedirs(os.path.join(temp_path, 'resources', 'l10n', 'es', 'LC_MESSAGES'))
os.makedirs(os.path.join(temp_path, 'resources', 'l10n', 'ru', 'LC_MESSAGES'))
shutil.copy( os.path.join('..', 'resources', 'l10n', 'es', 'LC_MESSAGES', 'boss.mo'), os.path.join(temp_path, 'resources', 'l10n', 'es', 'LC_MESSAGES') )