Compare commits

...

2 Commits

Author SHA1 Message Date
Arkoprabho Chakraborti b5ab5a00eb
Merge 9027df724d into a2d7c083c7 2023-08-24 06:51:40 +00:00
Arkoprabho Chakraborti 9027df724d
Remove spaces around COLOR options
Thanks to @cclaus
https://github.com/kdabir/has/pull/75#discussion_r1301313069

Co-authored-by: Christian Clauss <cclauss@me.com>
2023-08-24 12:21:38 +05:30
1 changed files with 1 additions and 1 deletions

2
has
View File

@ -44,7 +44,7 @@ readonly FAIL="${txtbold}${txtred}${fancyx}${txtreset}"
COLOR_AUTO="auto"
COLOR_NEVER="never"
COLOR_ALWAYS="always"
COLOR_OPTS=( "${COLOR_AUTO}" "${COLOR_NEVER}" "${COLOR_ALWAYS}")
COLOR_OPTS=("${COLOR_AUTO} ${COLOR_NEVER} ${COLOR_ALWAYS}")
COLOR="${COLOR_AUTO}"
COLOR_PREFIX="--color"