Skip to content

Commit

Permalink
Merge pull request #3367 from mstepanov/timob-11306-30x
Browse files Browse the repository at this point in the history
(3_0_X)[TIMOB-11306] ignore .git/.svn/CVS folders in resulting build
  • Loading branch information
vishalduggal committed Oct 31, 2012
2 parents c5f2703 + cce0287 commit 9318d92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions support/iphone/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
except:
import simplejson as json

ignoreFiles = ['.gitignore', '.cvsignore', '.DS_Store', '.git','.svn','_svn','CVS'];
ignoreDirs = ['iphone', 'android','mobileweb',];
ignoreFiles = ['.gitignore', '.cvsignore', '.DS_Store', '_svn'];
ignoreDirs = ['iphone', 'android', 'mobileweb', '.git', '.svn', 'CVS'];

HEADER = """/**
* Appcelerator Titanium Mobile
Expand Down

0 comments on commit 9318d92

Please sign in to comment.