We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Great project, like it is in go, so easy portable...
But I find there is a issue , there is no TERM environment set.
40f72c8c915f:/$ echo $TERM dumb
So some application will fail, need to set TERM manual. export TERM=xterm-256color
But this should be done when opening the shell, from the go binairy.
something like this? cmd.Env = append(os.Environ(), "TERM=xterm-256color")
The text was updated successfully, but these errors were encountered:
#1 Update dependencies
b8eed45
#1 Prepare for versioned release
8d7efcd
No branches or pull requests
Great project, like it is in go, so easy portable...
But I find there is a issue , there is no TERM environment set.
So some application will fail, need to set TERM manual.
export TERM=xterm-256color
But this should be done when opening the shell, from the go binairy.
something like this? cmd.Env = append(os.Environ(), "TERM=xterm-256color")
The text was updated successfully, but these errors were encountered: