Skip to content

Commit

Permalink
lmao
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvris committed Sep 13, 2024
1 parent a7fe259 commit 238be83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def launch(exe, in_terminal=False):
subprocess.Popen([terminal, '-e', shlex.join(exe)])
return
elif is_macos:
terminal = [which('open'), '-W', '-a', 'Terminal.MDApp']
terminal = [which('open'), '-W', '-a', 'Terminal.app']
subprocess.Popen([*terminal, *exe])
return
subprocess.Popen(exe)
Expand Down Expand Up @@ -482,7 +482,7 @@ def run_component(component: Component, *args):
elif component.script_name:
subprocess.run([*get_exe(component.script_name), *args])
else:
logging.warning(f"Component {component} does not MDAppear to be executable.")
logging.warning(f"Component {component} does not appear to be executable.")


def main(args: Optional[Union[argparse.Namespace, dict]] = None):
Expand Down

0 comments on commit 238be83

Please sign in to comment.