Commit
·
901b248
1
Parent(s):
d1c3651
fixed issue when retrieving chess engine env var
Browse files
utils/dependencies_checker.py
CHANGED
|
@@ -25,7 +25,7 @@ def find_stockfish_path():
|
|
| 25 |
|
| 26 |
|
| 27 |
def check_dependencies():
|
| 28 |
-
chess_engine_path =os.getenv("CHESS_ENGINE_PATH"
|
| 29 |
if chess_engine_path is None:
|
| 30 |
stockfish_path = find_stockfish_path()
|
| 31 |
if stockfish_path:
|
|
|
|
| 25 |
|
| 26 |
|
| 27 |
def check_dependencies():
|
| 28 |
+
chess_engine_path =os.getenv("CHESS_ENGINE_PATH")
|
| 29 |
if chess_engine_path is None:
|
| 30 |
stockfish_path = find_stockfish_path()
|
| 31 |
if stockfish_path:
|