Deadline: handle all valid paths in RenderExecutable (#5694)

* handle all valid paths in RenderExecutable

* Update openpype/modules/deadline/repository/custom/plugins/Ayon/Ayon.py

Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>

---------

Co-authored-by: Petr Kalis <petr.kalis@gmail.com>
Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
Claudio Hickstein 2023-10-04 11:17:22 +02:00 committed by GitHub
parent 4a2417d2ca
commit 090f1e041b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,7 +96,7 @@ class AyonDeadlinePlugin(DeadlinePlugin):
for path in exe_list.split(";"):
if path.startswith("~"):
path = os.path.expanduser(path)
expanded_paths.append(path)
expanded_paths.append(path)
exe = FileUtils.SearchFileList(";".join(expanded_paths))
if exe == "":