Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
fdb0e239
Commit
fdb0e239
authored
Oct 20, 2015
by
Marc Cornellà
Browse files
Merge pull request #4507 from WhyEee/fix-no-tput
Fix install.sh/upgrade.sh for tput-less systems
parents
b3c10b92
75e619b7
Changes
2
Show whitespace changes
Inline
Side-by-side
tools/install.sh
View file @
fdb0e239
function
main
()
{
# Use colors, but only if connected to a terminal, and that terminal
# supports them.
tput
=
$(
which tput
)
if
[
-n
"
$tput
"
]
;
then
ncolors
=
$(
$tput
colors
)
if
which tput
>
/dev/null 2>&1
;
then
ncolors
=
$(
tput colors
)
fi
if
[
-t
1
]
&&
[
-n
"
$ncolors
"
]
&&
[
"
$ncolors
"
-ge
8
]
;
then
RED
=
"
$(
tput setaf 1
)
"
...
...
tools/upgrade.sh
View file @
fdb0e239
# Use colors, but only if connected to a terminal, and that terminal
# supports them.
tput
=
$(
which tput
)
if
[
-n
"
$tput
"
]
;
then
if
which tput
>
/dev/null 2>&1
;
then
ncolors
=
$(
tput colors
)
fi
if
[
-t
1
]
&&
[
-n
"
$ncolors
"
]
&&
[
"
$ncolors
"
-ge
8
]
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment