mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-11 06:41:50 +00:00

uname on SmartOS cannot be used to guess if 32 and/or 64 bits binaries are supported, and its output is different than other uname commands on other operating systems. This change uses pkg_info to determine what types of binaries pkgsrc would install. If pkg_info fails to run or is not present, this change falls back to using isainfo -n, which determines what the kernel supports. It allows users to install node binaries on Solaris derivatives. io.js can also be installed on Solaris derivatives starting with version v3.3.1.
18 lines
556 B
Bash
Executable File
18 lines
556 B
Bash
Executable File
#!/bin/sh
|
|
|
|
die () { echo $@ ; exit 1; }
|
|
|
|
. ../../../nvm.sh
|
|
. ../../common.sh
|
|
|
|
assert_not_ok iojs_version_has_solaris_binary ""
|
|
assert_not_ok iojs_version_has_solaris_binary "foo"
|
|
assert_not_ok iojs_version_has_solaris_binary "v1.1.0"
|
|
|
|
assert_ok iojs_version_has_solaris_binary "v3.3.1"
|
|
assert_ok iojs_version_has_solaris_binary "iojs-v3.3.1"
|
|
assert_ok iojs_version_has_solaris_binary "v3.3.2"
|
|
assert_ok iojs_version_has_solaris_binary "iojs-v3.3.2"
|
|
assert_ok iojs_version_has_solaris_binary "v3.4.1"
|
|
assert_ok iojs_version_has_solaris_binary "iojs-v3.4.1"
|