mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-15 00:02:52 -04:00
auto-fix pre-commit issues
This commit is contained in:
parent
63cf9f83c7
commit
f7a9afaaff
@ -367,7 +367,9 @@ def deploy_libraries(app_bundle: str, lib_dirs: list[str]) -> None:
|
||||
cmd.extend(command_tuple)
|
||||
print(f"Executing {cmd} {path}")
|
||||
try:
|
||||
result = subprocess.run(cmd + [path], check=True, capture_output=True, text=True)
|
||||
result = subprocess.run(
|
||||
cmd + [path], check=True, capture_output=True, text=True
|
||||
)
|
||||
print(result.stdout)
|
||||
print(result.stderr)
|
||||
except subprocess.CalledProcessError as e:
|
||||
@ -379,7 +381,6 @@ def deploy_libraries(app_bundle: str, lib_dirs: list[str]) -> None:
|
||||
raise
|
||||
|
||||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(description="Enhanced macdeployqt implementation")
|
||||
parser.add_argument("app_bundle", help="Path to the app bundle")
|
||||
|
Loading…
x
Reference in New Issue
Block a user