From d34ede201b7c13a3d023d9d6cdd4da5eae65a67b Mon Sep 17 00:00:00 2001 From: WrinklyNinja Date: Wed, 29 Jan 2014 10:12:00 +0000 Subject: [PATCH] Update archive.py Removed packaging of graphvis and svgweb as part of issue #90 work. --- src/archive.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/archive.py b/src/archive.py index ebd28f35..ad4e594b 100644 --- a/src/archive.py +++ b/src/archive.py @@ -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') )