Skip to content

Commit

Permalink
embarassing bug fix (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
borg323 authored Mar 3, 2021
1 parent 5edd7bd commit d36eae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lc0_main.go
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,7 @@ func main() {
}
dir, _ := os.Getwd()
fi, err := os.Stat(path.Join(dir, lc0Exe))
if err == nil && !fi.Mode().Perm().IsDir() {
if err == nil && !fi.Mode().IsDir() {
lc0Exe = path.Join(dir, lc0Exe)
}
checkLc0()
Expand Down

0 comments on commit d36eae0

Please sign in to comment.