fix(args): pass the right string

Signed-off-by: Raito Bezarius <raito@lix.systems>
This commit is contained in:
raito 2024-07-20 01:09:59 +02:00
parent 79bcbba46d
commit 77d0ed37d1

View file

@ -460,7 +460,7 @@ def make_job_evaluator(name: str, settings: EvaluatorSettings, flake: bool) -> N
if flake: if flake:
actual_command += ["--flake", f".#{FLAKE_TARGET_ATTRIBUTE_FOR_JOBS}"] actual_command += ["--flake", f".#{FLAKE_TARGET_ATTRIBUTE_FOR_JOBS}"]
else: else:
actual_command += ["--expr", "'import ./.ci/buildbot.nix'"] actual_command += ["--expr", "import ./.ci/buildbot.nix"]
return NixEvalCommand( return NixEvalCommand(
env={}, env={},