From 0150026aea148d97d5ca086d345b541afc17733a Mon Sep 17 00:00:00 2001 From: Technofab Date: Sat, 29 Jul 2023 18:16:05 +0200 Subject: [PATCH] chore: echo nix version before activating shell --- ci-image/entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci-image/entrypoint.sh b/ci-image/entrypoint.sh index 27c6ec9..58f6b93 100755 --- a/ci-image/entrypoint.sh +++ b/ci-image/entrypoint.sh @@ -5,5 +5,6 @@ cd "$CI_PROJECT_DIR" nix_shell="${NIX_CI_SHELL:-ci}" +echo "Using nix version $(nix --version)" echo "Activating flake's '$nix_shell' shell..." nix develop .#"$nix_shell" --impure --command "bash"