7 ms·
There's a bug in the detection script. The line: if [ "$path" == "" ] should be if [ "$path" = "" ]
by BarbaryCoast 2y ago
There's a bug in the detection script. The line:
if [ "$path" == "" ]
should be
if [ "$path" = "" ]
- dualbus 2y agoBash accepts both variants of the equality operator. So it is not a bug.