mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Merge pull request #310 from leocassarani/rbenv-help-mawk
Fix incorrect formatting of rbenv-help output under MAWK
This commit is contained in:
commit
da80bced53
1 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,8 @@ collect_documentation() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function trim(str) {
|
function trim(str) {
|
||||||
gsub(/^\n*/, "", str)
|
sub(/^\n*/, "", str)
|
||||||
gsub(/\n*$/, "", str)
|
sub(/\n*$/, "", str)
|
||||||
return str
|
return str
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue