From 5b3f986a29a87e336fdad7f79cbaf452e0f088be Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 8 Nov 2023 15:31:14 +0200 Subject: [PATCH] buildbot_nix: update comment This doesn't invoke nix-instantiate anymore, but `nix-eval-jobs --flake .#checks`. --- 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 3004f91e..e78d1778 100644 --- a/buildbot_nix/__init__.py +++ b/buildbot_nix/__init__.py @@ -131,7 +131,7 @@ def __init__(self, supported_systems: list[str], **kwargs: Any) -> None: @defer.inlineCallbacks def run(self) -> Generator[Any, object, Any]: - # run nix-instanstiate to generate the dict of stages + # run nix-eval-jobs --flake .#checks to generate the dict of stages cmd: remotecommand.RemoteCommand = yield self.makeRemoteShellCommand() yield self.runCommand(cmd)