From 322e9ddcf363622ad36ad969b602b5d432239c0f Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Sun, 08 Feb 2026 00:08:42 +0000
Subject: [PATCH] Rename final binary not to conflict with existing archbuild

---
 src/archbuild/cli.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/archbuild/cli.py b/src/archbuild/cli.py
index 90037fd..a05b9ba 100644
--- a/src/archbuild/cli.py
+++ b/src/archbuild/cli.py
@@ -22,7 +22,7 @@
 
 def run_async(coro: Any) -> Any:
     """Run async function in sync context."""
-    return asyncio.get_event_loop().run_until_complete(coro)
+    return asyncio.run(coro)
 
 
 class Context:

--
Gitblit v1.10.0