This can be fixed as described, tested, and confirmed here.
Here's what I suggest:
In install.sh, check for $0STYPE of solaris*
If $0STYPE is solaris*, then:
Backup ~/.profile to ~/.profile.bak
Comment out all uncommented lines in ~/.profile
Add the following lines to ~/.profile:
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin directories
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
Continue the rest of the install.sh as usual.
The text was updated successfully, but these errors were encountered:
Solaris and Illumos use Bash as the default shell. However, currently
bash-itdoes not work as expected on them.This can be fixed as described, tested, and confirmed here.
Here's what I suggest:
install.sh, check for$0STYPEofsolaris*$0STYPEissolaris*, then:~/.profileto~/.profile.bak~/.profile~/.profile:install.shas usual.The text was updated successfully, but these errors were encountered: