From 77d0ed37d14ecaed03ecc8c415e5a45a3adc0bea 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 851b97a..1cb5744 100644 --- a/buildbot_nix/__init__.py +++ b/buildbot_nix/__init__.py @@ -460,7 +460,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={},