Skip to content

Instantly share code, notes, and snippets.

View bountin's full-sized avatar

Martin Prebio bountin

View GitHub Profile
@bountin
bountin / builder.py.diff
Created July 22, 2011 10:09
Titianium 1.6.2 - simple Bugfix for iPhone Simulator logging problem after Lion/XCode update
--- builder.py 2011-07-22 12:03:44.000000000 +0200
+++ builder.py.orig 2011-07-22 12:01:22.000000000 +0200
@@ -1104,7 +1104,7 @@
# on OSX Snow Leopard, we can use spotlight for faster searching of log files
results = run.run(['mdfind',
'-onlyin',
- os.path.expanduser('~/Library/Application Support/iPhone Simulator/4.3.2'),
+ os.path.expanduser('~/Library/Application Support/iPhone Simulator/%s'%iphone_version),
'-name',
'%s.log'%log_id],True)