freemyipod r306 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r305‎ | r306 | r307 >
Date:00:18, 2 December 2010
Author:theseven
Status:new
Tags:
Comment:
iLoader: Make sure that .svn folders aren't included in the zip file, courtesy of user890104
Modified paths:
  • /apps/iloader/themes/default-fastboot/Makefile (modified) (history)
  • /apps/iloader/themes/default/Makefile (modified) (history)

Diff [purge]

Index: apps/iloader/themes/default-fastboot/Makefile
@@ -18,7 +18,7 @@
1919 $(ZIPFILE): $(ASSETS) $(CONFIG)
2020 @echo [ZIP] $@
2121 @rm -f $(ZIPFILE)
22 - @$(ZIP) $@ iLoader
 22+ @$(ZIP) --exclude='*/.svn/*' $@ iLoader
2323
2424 $(CONFIG): $(CONFIGSRC)
2525 @echo [CCONF] $<
Index: apps/iloader/themes/default/Makefile
@@ -18,7 +18,7 @@
1919 $(ZIPFILE): $(ASSETS) $(CONFIG)
2020 @echo [ZIP] $@
2121 @rm -f $(ZIPFILE)
22 - @$(ZIP) $@ iLoader
 22+ @$(ZIP) --exclude='*/.svn/*' $@ iLoader
2323
2424 $(CONFIG): $(CONFIGSRC)
2525 @echo [CCONF] $<