top | item 39872129

(no title)

BarbaryCoast | 1 year ago

There's a bug in the detection script. The line:

if [ "$path" == "" ]

should be

if [ "$path" = "" ]

discuss

order

dualbus|1 year ago

Bash accepts both variants of the equality operator. So it is not a bug.