aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index 3d46a11..d1bb039 100644
--- a/shell.nix
+++ b/shell.nix
@@ -3,7 +3,7 @@ pkgs.mkShell {
buildInputs = [
(pkgs.writers.writeDashBin "develop" ''
set -efu
- find src | entr -rs '( cd $(nix-build --no-out-link -A nomath-website) && python -m http.server )'
+ find src | entr -rs '( set -e; cd $(nix-build --no-out-link); python -m http.server )'
'')
];
}