Skip to content

Commit

Permalink
fix #1463 - run batch file via CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
pietrodicaprio committed May 14, 2022
1 parent 2bf0ba7 commit bfdb428
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/backend/wine/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,10 @@ def __launch_with_bridge(self):
return self.__launch_exe()
if self.exec_type == "msi":
return self.__launch_msi()
if self.exec_type == "batch":
return self.__launch_batch()

logging.error(f'exec_type {self.exec_type} is not valid')
return False

def __launch_exe(self):
Expand Down

0 comments on commit bfdb428

Please sign in to comment.