mirror of
https://github.com/frappe/bench.git
synced 2025-01-09 00:21:23 +00:00
Avoid continue loop
This commit is contained in:
parent
bb2e324257
commit
877bf09afa
@ -43,6 +43,9 @@ def is_bench_directory(directory=os.path.curdir):
|
|||||||
for folder in paths_in_bench:
|
for folder in paths_in_bench:
|
||||||
path = os.path.abspath(os.path.join(directory, folder))
|
path = os.path.abspath(os.path.join(directory, folder))
|
||||||
is_bench = is_bench and os.path.exists(path)
|
is_bench = is_bench and os.path.exists(path)
|
||||||
|
# Once is_bench becomes false, it will always be false, even if other path exists.
|
||||||
|
if not is_bench:
|
||||||
|
break
|
||||||
|
|
||||||
return is_bench
|
return is_bench
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user