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-24653] Fix JDK typo #125

Merged
merged 1 commit into from
May 3, 2017
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
6 changes: 3 additions & 3 deletions lib/jdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ exports.detect = function detect(config, opts, finished) {
+ (process.env.JAVA_HOME
? __('Please verify your __JAVA_HOME__ environment variable is correctly set to the JDK install location.') + '\n' +
__('__JAVA_HOME__ is currently set to "%s".', process.env.JAVA_HOME) + '\n'
: __('Please set the __JAVA_HOME__ is set to the JDK install location and not the JRE (Java Runtime Environment).') + '\n'
: __('Please set the __JAVA_HOME__ environment variable to the JDK install location and not the JRE (Java Runtime Environment).') + '\n'
)
+ __('The __JAVA_HOME__ must point to the JDK and not the JRE (Java Runtime Environment).') + '\n'
+ __('The __JAVA_HOME__ environment variable must point to the JDK and not the JRE (Java Runtime Environment).') + '\n'
+ __('You may want to reinstall the JDK by downloading it from %s.',
'__http://appcelerator.com/jdk__')
});
Expand Down Expand Up @@ -240,7 +240,7 @@ exports.detect = function detect(config, opts, finished) {
type: 'error',
message: __('JDK (Java Development Kit) not installed.') + '\n'
+ __('If you already have installed the JDK, verify your __JAVA_HOME__ environment variable is correctly set.') + '\n'
+ __('The JDK is required for must be manually downloaded and installed from %s.',
+ __('The JDK is required for Titanium and must be manually downloaded and installed from %s.',
'__http://appcelerator.com/jdk__')
});
}
Expand Down