-
-
Notifications
You must be signed in to change notification settings - Fork 67
Add Oracle Solaris 11 support #51
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
base: master
Are you sure you want to change the base?
Conversation
nodebrew
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use error_and_exit
Alhadis
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Proof-reading.
| } | ||
|
|
||
| sub _cmd_install_binary { | ||
| error_and_exit("Does not supported on Oracle Solaris. This option supports only illumos kernel distribution. \n") if $^O eq 'solaris'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| error_and_exit("Does not supported on Oracle Solaris. This option supports only illumos kernel distribution. \n") if $^O eq 'solaris'; | |
| error_and_exit("Node.js does not support Oracle Solaris. Only illumos-based distributions are supported.\n") if $^O eq 'solaris'; |
| my $tarball_path = "$src_dir/$target_name.tar.gz"; | ||
|
|
||
| if ($^O eq 'solaris' && $self->get_type eq 'iojs') { | ||
| error_and_exit("io.js does not supported on $^O \n"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| error_and_exit("io.js does not supported on $^O \n"); | |
| error_and_exit("io.js is not supported on $^O \n"); |
Hi,
Add a fix that to support Oracle Solaris 11. (Check the Solaris 11.3)
thanks,
Kazuyuki