From d5ad5837168abd0885fe9b040121d7625dec0306 Mon Sep 17 00:00:00 2001 From: WrinklyNinja Date: Fri, 20 Sep 2013 12:41:41 +0100 Subject: [PATCH] Removed unnecessary icon file from release packaging. --- src/archive.py | 2 -- src/installer.nsi | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/archive.py b/src/archive.py index 18ac9d0d..cba9b243 100755 --- a/src/archive.py +++ b/src/archive.py @@ -8,7 +8,6 @@ # build/BOSS.exe # resources/graphvis # resources/svgweb -# resources/icon.ico # resources/polyfill.js # resources/script.js # resources/style.css @@ -39,7 +38,6 @@ 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') ) -shutil.copy( os.path.join('..', 'resources', 'icon.ico'), os.path.join(temp_path, 'resources') ) shutil.copy( os.path.join('..', 'resources', 'polyfill.js'), os.path.join(temp_path, 'resources') ) shutil.copy( os.path.join('..', 'resources', 'script.js'), os.path.join(temp_path, 'resources') ) shutil.copy( os.path.join('..', 'resources', 'style.css'), os.path.join(temp_path, 'resources') ) diff --git a/src/installer.nsi b/src/installer.nsi index d25d246a..4385b560 100644 --- a/src/installer.nsi +++ b/src/installer.nsi @@ -271,7 +271,6 @@ FunctionEnd ;Install resource files. SetOutPath "$INSTDIR\resources" - File "..\resources\icon.ico" File "..\resources\polyfill.js" File "..\resources\script.js" File "..\resources\style.css" @@ -383,7 +382,6 @@ FunctionEnd RMDir "$INSTDIR\docs" ;Remove resource files. - Delete "$INSTDIR\resources\icon.ico" Delete "$INSTDIR\resources\polyfill.js" Delete "$INSTDIR\resources\script.js" Delete "$INSTDIR\resources\style.css"