From 0fb56c9a4890347a1124fcb98f6b459f46699e3a Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Thu, 27 Jan 2022 15:03:21 -0500 Subject: [PATCH] I checked, git is there. --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2b72a4e78..11136e04e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -454,12 +454,14 @@ jobs: steps: - "run": + # The nixos/nix image does not include ssh. Install it so the + # `checkout` step will succeed. name: "Install Basic Dependencies" command: | nix-env \ --file https://github.com/nixos/nixpkgs/archive/nixos-${NIXPKGS}.tar.gz \ --install \ - -A git openssh + -A openssh - "checkout"