forked from dz0ny/chrome-transmission-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Janez Troha
committed
Dec 15, 2010
1 parent
609e50b
commit 480c6bc
Showing
5 changed files
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@echo off | ||
del dist.zip /Q | ||
del dist /s /Q | ||
xcopy source dist\source /s | ||
FOR %%G IN (source\js\*.js) DO java -jar compiler.jar --js %%G --js_output_file dist\%%G --summary_detail_level 3 --compilation_level SIMPLE_OPTIMIZATIONS | ||
FOR %%G IN (source\css\*.css) DO java -jar css.jar %%G -o dist\%%G -v --charset utf-8 | ||
"C:\Program Files\7-Zip\7z.exe" -tzip -mx=9 a dist.zip .\dist\source\* | ||
del dist /s /Q | ||
pause |
Binary file not shown.
Binary file not shown.