forked from soerennb/extplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_component.bat
28 lines (21 loc) · 971 Bytes
/
build_component.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
rem ----------------------------------------------------------------------------
rem
rem Component Install Archive Builder
rem
rem This file is part of eXtplorer
rem
rem ----------------------------------------------------------------------------
rem YOU MUST HAVE INSTALLED THE 4.x VERSION OF 7zip
rem Please update the program path here accordingly
set PATH="c:\Projekte\extplorer\svn-extplorer2\"
set ZIPPATH="C:\Programme\7-Zip"
cd %PATH%
%ZIPPATH%\7z.exe a -ttar -r %PATH%\scripts.tar scripts
%ZIPPATH%\7z.exe d -r %PATH%\scripts.tar .svn\
%ZIPPATH%\7z.exe a -tgzip %PATH%\scripts.tar.gz %PATH%\scripts.tar
del %PATH%\scripts.tar
%ZIPPATH%\7z.exe a -tzip -r %PATH%\com_extplorer.zip
%ZIPPATH%\7z.exe d -r %PATH%\com_extplorer.zip .svn\ .git\
%ZIPPATH%\7z.exe d %PATH%\com_extplorer.zip scripts\ archive\
%ZIPPATH%\7z.exe d -r %PATH%\com_extplorer.zip build_component.sh build_component.bat .project .projectOptions .cache .gitignore
del %PATH%\scripts.tar.gz