-
Notifications
You must be signed in to change notification settings - Fork 176
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
Problem with tput #40
Comments
tput is a IEEE Std 1003.1-2001 standard utility. It might not hurt to check if it's available before using it, but it would be pretty fair to not support such a nonstandard system, too. |
Since NB: I'm assuming that |
On my test system "type type" says it is a shell built-in so since Bash is already a requirement then I would think "type tput" should be safe. |
installed() {
type "$1" >/dev/null 2>&1
} References:
|
On a client's server, I get the following output when using modman:
./module-manager/modman: Zeile 223: tput: Kommando nicht gefunden.
./module-manager/modman: Zeile 224: tput: Kommando nicht gefunden.
Maybe it is possible to avoid the usage of tput or check if it is available beforehand...
The text was updated successfully, but these errors were encountered: