From b76e48a12228cf46e06429cd3cdddb5655783f6d Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 30 Jul 2024 20:20:36 +0100 Subject: [PATCH] Fix `compgen not found` error Fix the `compgen not found` error when running `run help`, or `run` with no arguments within a direnv shell. --- build.yaml | 1 + flake.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build.yaml b/build.yaml index 461cc3f9..aa234b52 100644 --- a/build.yaml +++ b/build.yaml @@ -5,6 +5,7 @@ language: php flake: devshell: packages: + - bashInteractive - nodePackages.pnpm - nodejs - php82 diff --git a/flake.nix b/flake.nix index b2bf3657..362b998d 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ inherit (pkgs) mkShell; in { devShells.${system}.default = - mkShell { buildInputs = with pkgs; [ nodePackages.pnpm nodejs php82 php82Packages.composer ]; }; + mkShell { buildInputs = with pkgs; [ bashInteractive nodePackages.pnpm nodejs php82 php82Packages.composer ]; }; formatter.${system} = pkgs.nixfmt; };