Skip to content

Commit

Permalink
Merge pull request #5779 from cb1kenobi/timob-17080
Browse files Browse the repository at this point in the history
[TIMOB-17080] Fixed label when running on iOS device from Studio.
  • Loading branch information
cb1kenobi committed Jun 6, 2014
2 parents 736ca58 + 6649445 commit 6d33d85
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion iphone/cli/hooks/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,11 @@ exports.init = function (logger, config, cli) {
next();
state = INSTALLED;
setTimeout(function () {
logger.log(__('Please manually launch the application or press CTRL-C to quit').magenta + '\n');
if (process.env.STUDIO_VERSION) {
logger.log(__('Please manually launch the application').magenta + '\n');
} else {
logger.log(__('Please manually launch the application or press CTRL-C to quit').magenta + '\n');
}
}, 50);
}
} else if (state == INSTALLED) {
Expand Down
1 change: 1 addition & 0 deletions iphone/cli/locales/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@
"Installing app on device: %s": "Installing app on device: %s",
"Chances are there is a signing issue with your provisioning profile or the generated app is not compatible with your device": "Chances are there is a signing issue with your provisioning profile or the generated app is not compatible with your device",
"App successfully installed on device: %s": "App successfully installed on device: %s",
"Please manually launch the application": "Please manually launch the application",
"Please manually launch the application or press CTRL-C to quit": "Please manually launch the application or press CTRL-C to quit",
"Start application log": "Start application log",
"End application log": "End application log",
Expand Down

0 comments on commit 6d33d85

Please sign in to comment.