From baa085302d2240cda398d07c829f95e36f87bb2d Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sat, 20 Jul 2024 01:09:59 +0200 Subject: [PATCH] fix(args): pass the right string Signed-off-by: Raito Bezarius --- buildbot_nix/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot_nix/__init__.py b/buildbot_nix/__init__.py index cbd5649..b27998d 100644 --- a/buildbot_nix/__init__.py +++ b/buildbot_nix/__init__.py @@ -421,7 +421,7 @@ def make_job_evaluator(name: str, settings: EvaluatorSettings, flake: bool) -> N if flake: actual_command += ["--flake", f".#{FLAKE_TARGET_ATTRIBUTE_FOR_JOBS}"] else: - actual_command += ["--expr", "'import ./.ci/buildbot.nix'"] + actual_command += ["--expr", "import ./.ci/buildbot.nix"] return NixEvalCommand( env={},