Commit 51de4cc
fix: replace Bash-specific lowercase/uppercase substitution with portable tr command
This change replaces the Bash-specific ${VAR,,} and ${VAR^^} syntax with a portable tr command. The original syntax is not supported by the default shell on macOS (which uses older versions of Bash or defaults to sh), causing the script to fail. Using tr ensures compatibility across Unix-like systems, including macOS.1 parent e639b38 commit 51de4cc
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
47 | | - | |
48 | | - | |
| 47 | + | |
| 48 | + | |
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| |||
0 commit comments