Y
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
dualbus
803 days ago
Bash accepts both variants of the equality operator. So it is not a bug.
link