Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vkucera committed Oct 18, 2024
1 parent b43d82d commit f9a9457
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exec/update_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def exec_cmd(cmd: str, msg=None, silent=False, safe=False):
msg_fatal(msg if msg else f"executing: {cmd}")


def get_cmd(cmd: str, msg=None, safe=False):
def get_cmd(cmd: str, msg=None, safe=False) -> str:
"""Get output of a shell command."""
if debug:
eprint(cmd)
Expand Down Expand Up @@ -351,7 +351,7 @@ def main():
try:
get_cmd("which aliBuild", "aliBuild not found")
alibuild_exists = True
except:
except SystemExit:
msg_warn("aliBuild commands will be skipped.")

global alibuild_arch
Expand Down

0 comments on commit f9a9457

Please sign in to comment.