Hacker News new | ask | show | jobs
by BarbaryCoast 804 days ago
There's a bug in the detection script. The line:

if [ "$path" == "" ]

should be

if [ "$path" = "" ]

1 comments

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