From 275460da89e74ac70ce127215753a44e40f17f1a Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Sat, 07 Feb 2026 23:28:25 +0000
Subject: [PATCH] Add script to build an executable
---
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