Skip to content

Commit

Permalink
Merge pull request #3807 from cb1kenobi/timob-12103
Browse files Browse the repository at this point in the history
[TIMOB-12103] Fixed typo.
  • Loading branch information
Bryan Hughes committed Jan 28, 2013
2 parents de89722 + 0f4b2ca commit 4f03cf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -411,12 +411,12 @@ exports.validate = function (logger, config, cli) {
if (isDir) {
logger.warn(__('Found graylisted directory in the Resources directory'));
logger.warn(__('The directory "%s" is potentially a reserved word.', filename));
logger.warn(__('There is a good chance your app will be rejected by the Apple.'));
logger.warn(__('There is a good chance your app will be rejected by Apple.'));
logger.warn(__('It is highly recommended you rename this directory to something else.'));
} else {
logger.warn(__('Found graylisted file in the Resources directory'));
logger.warn(__('The file "%s" is potentially a reserved word.', filename));
logger.warn(__('There is a good chance your app will be rejected by the Apple.'));
logger.warn(__('There is a good chance your app will be rejected by Apple.'));
logger.warn(__('It is highly recommended you rename this file to something else.'));
}
}
Expand Down

0 comments on commit 4f03cf9

Please sign in to comment.