fix for solaris

This commit is contained in:
neil 2020-12-14 20:13:05 +08:00
parent e6e0771496
commit e488220bfc
1 changed files with 2 additions and 4 deletions

View File

@ -429,13 +429,11 @@ _secure_debug3() {
}
_upper_case() {
# shellcheck disable=SC2018,SC2019
tr 'a-z' 'A-Z'
tr '[:lower:]' '[:upper:]'
}
_lower_case() {
# shellcheck disable=SC2018,SC2019
tr 'A-Z' 'a-z'
tr '[:upper:]' '[:lower:]'
}
_startswith() {