diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-22 02:21:36 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-22 02:21:36 +0100 |
commit | 108890fe0f366dc9c7c5234ed05b5bdb4ae14523 (patch) | |
tree | 50def70d2d065b9b3c23ba51e2c72a013e894a11 | |
parent | c04b08769bce48387d68eb47e691f5235129b582 (diff) |
fix `develop`
-rw-r--r-- | shell.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 )' '') ]; } |