From 2c98d04fa23a82bf62cca76bb6612227c3f65cc0 Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Tue, 28 Mar 2023 15:48:23 +0800 Subject: [PATCH] #2: Fix run_command invocation --- action.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.py b/action.py index 4b6fd6d..d37d22f 100644 --- a/action.py +++ b/action.py @@ -43,7 +43,7 @@ def main() -> None: elif install == "latest": run_command("pip install dunamai") else: - run_command("pip install dunamai=={}", install) + run_command("pip install dunamai=={}".format(install)) version = run_command("{} {}".format(command, args)) set_output("version", version)