Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-15730] Fixed bug with iOS Simulator and device builds getting stu... #4984

Merged
merged 1 commit into from
Nov 15, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -1972,13 +1972,13 @@ iOSBuilder.prototype.createXcodeProject = function createXcodeProject() {
+ ' echo \\"Xcode Post-Compile Phase: Image optimization finished before xcodebuild finished, continuing\\"\\n'
+ ' else\\n'
+ ' echo \\"Xcode Post-Compile Phase: Waiting for image optimization to complete\\"\\n'
+ ' echo \\"Xcode Post-Compile Phase: $TITANIUM_CLI_IMAGES_OPTIMIZED\\"\\n'
+ ' while [ ! -f \\"$TITANIUM_CLI_IMAGES_OPTIMIZED\\" ]\\n'
+ ' do\\n'
+ ' sleep 1\\n'
+ ' done\\n'
+ " echo 'Xcode Post-Compile Phase: Image optimization complete, continuing'\\n"
+ ' fi\\n'
+ ' rm -f \\"$TITANIUM_CLI_IMAGES_OPTIMIZED\\"\\n'
+ 'fi'
);

Expand Down Expand Up @@ -2547,7 +2547,7 @@ iOSBuilder.prototype.invokeXcodeBuild = function invokeXcodeBuild(next) {
HOME: process.env.HOME,
PATH: process.env.PATH,
TITANIUM_CLI_XCODEBUILD: 'Enjoy hacking? http://jobs.appcelerator.com/',
TITANIUM_CLI_IMAGES_OPTIMIZED: this.imagesOptimizedFile
TITANIUM_CLI_IMAGES_OPTIMIZED: this.target == 'simulator' ? '' : this.imagesOptimizedFile
}
},
next
Expand Down