Skip to content

Commit 85b476b

Browse files
committed
Fix unnecessary escaping
1 parent 2cb2bf0 commit 85b476b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pwm-fan.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ while getopts 'c:C:d:D:fF:hl:m:o:p:s:t:T:u:U:' OPT; do
501501
THERMAL_CONTROLLER="$OPTARG"
502502
if [[ ! "$THERMAL_CONTROLLER" =~ ^(logistic|pid)$ ]]; then
503503
message "The value for the '-o' argument ($THERMAL_CONTROLLER) is invalid." 'ERROR'
504-
message "The thermal controller must be either \'logistic\' or \'pid\'." 'ERROR'
504+
message "The thermal controller must be either 'logistic' or 'pid'." 'ERROR'
505505
exit 1
506506
fi
507507
;;

0 commit comments

Comments
 (0)