Skip to content

Commit ecce9bb

Browse files
fix: don't spawn a nested shell for manage
1 parent 2b937fa commit ecce9bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ rec {
117117
shell =
118118
let
119119
manage = pkgs.writeScriptBin "manage" ''
120-
${python3}/bin/python ${toString ./src/website/manage.py} $@
120+
exec ${python3}/bin/python ${toString ./src/website/manage.py} $@
121121
'';
122122
deploymentSources = import ./infra/npins;
123123
in

0 commit comments

Comments
 (0)