From fbb88eac07b0d2315f257681443341e20d4a940d Mon Sep 17 00:00:00 2001 From: Technofab Date: Mon, 14 Aug 2023 15:49:31 +0200 Subject: [PATCH] fix(ci-image): not specifying bash breaks PATH --- ci-image/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-image/entrypoint.sh b/ci-image/entrypoint.sh index 975e7df..85696fc 100755 --- a/ci-image/entrypoint.sh +++ b/ci-image/entrypoint.sh @@ -9,5 +9,5 @@ echo "Using nix version $(nix --version)" echo "Activating flake's '$nix_shell' shell..." set -o xtrace -nix develop .#$nix_shell --impure +nix develop .#$nix_shell --impure --command "bash" set +o xtrace