We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8103b10 commit a67fd6fCopy full SHA for a67fd6f
getssl
@@ -1824,6 +1824,14 @@ get_os() { # function to get the current Operating System
1824
os="cygwin"
1825
elif [[ ${uname_res:0:5} == "MINGW" ]]; then
1826
os="mingw"
1827
+ elif [[ ${uname_res} == "SunOS" ]]; then
1828
+ os="solaris"
1829
+ if [ -d /usr/gnu/bin ]; then
1830
+ export PATH=/usr/gnu/bin:$PATH
1831
+ else
1832
+ echo "Path with required GNU commands not found, please install /usr/gnu/bin"
1833
+ exit 1
1834
+ fi
1835
else
1836
os="unknown"
1837
fi
0 commit comments