Fix compgen not found
error
Fix the `compgen not found` error when running `run help`, or `run` with no arguments within a direnv shell.
This commit is contained in:
parent
22d7d4e57e
commit
b76e48a122
|
@ -5,6 +5,7 @@ language: php
|
||||||
flake:
|
flake:
|
||||||
devshell:
|
devshell:
|
||||||
packages:
|
packages:
|
||||||
|
- bashInteractive
|
||||||
- nodePackages.pnpm
|
- nodePackages.pnpm
|
||||||
- nodejs
|
- nodejs
|
||||||
- php82
|
- php82
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
inherit (pkgs) mkShell;
|
inherit (pkgs) mkShell;
|
||||||
in {
|
in {
|
||||||
devShells.${system}.default =
|
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;
|
formatter.${system} = pkgs.nixfmt;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue