Skip to content

Commit

Permalink
FIX: missing space, ugh.
Browse files Browse the repository at this point in the history
  • Loading branch information
reefland committed Jul 30, 2022
1 parent 888ef40 commit 8694cff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 36-diskstatus
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ for i in "${!disksalias[@]}"; do #for every /dev/sdX device name
# if we have a temp see if we need to convert to F
if [ ! -z $temp ]; then
# See if we need to convert C to F
if $($convert_c_to_f) && ([ $unit == "C" ] || [ $unit == "c"])
if $($convert_c_to_f) && ([ $unit == "C" ] || [ $unit == "c" ])
then
temp=$(expr 9 '*' $temp / 5 + 32)
unit="F"
Expand Down

0 comments on commit 8694cff

Please sign in to comment.