Skip to content

Commit 53ca363

Browse files
committed
Fix folder name case sensitivity for linux.
1 parent 009ca46 commit 53ca363

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python_easy_chess_gui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161

6262

6363
APP_NAME = 'Python Easy Chess GUI'
64-
APP_VERSION = 'v1.2'
64+
APP_VERSION = 'v1.3'
6565
BOX_TITLE = '{} {}'.format(APP_NAME, APP_VERSION)
6666

6767

@@ -1139,7 +1139,7 @@ def check_engine_config_file(self):
11391139
option = []
11401140

11411141
# cwd=current working dir, engines=folder, fn=exe file
1142-
epath = Path(cwd, 'engines', fn)
1142+
epath = Path(cwd, 'Engines', fn)
11431143
engine_path_and_file = str(epath)
11441144
folder = epath.parents[0]
11451145

0 commit comments

Comments
 (0)