aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-02-22 02:21:36 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-02-22 02:21:36 +0100
commit108890fe0f366dc9c7c5234ed05b5bdb4ae14523 (patch)
tree50def70d2d065b9b3c23ba51e2c72a013e894a11
parentc04b08769bce48387d68eb47e691f5235129b582 (diff)
fix `develop`
-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 )'
'')
];
}