Skip to content

Commit ae0b6c4

Browse files
committed
fixed a bug that throwing error from fomm path correction.
1 parent 9650d51 commit ae0b6c4

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Mopy/bash/basher.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14012,9 +14012,8 @@ def __init__(self,exePathArgs,image,tip,foseTip=None,foseArg=None,workingDir=Non
1401214012
# Pathlist with args (for GeMM).
1401314013
if isinstance(self.exePath, list):
1401414014
for path in self.exePath:
14015-
if path.exists():
14016-
self.exePath = path
14017-
break
14015+
self.exePath = path
14016+
if path.exists(): break
1401814017
self.image = image
1401914018
self.tip = tip
1402014019
if workingDir:

0 commit comments

Comments
 (0)