diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2022-09-04 12:32:56 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2022-09-04 12:32:56 -0400 |
| commit | 7eb9e0bd924ccb845d85887089b178fb23ba0558 (patch) | |
| tree | 02601efe53572d95c5918fd212d670bd3123f807 /haunt/reload.py | |
| parent | 2fdf6adbd44d93caeeabf263649a1ee37a93908e (diff) | |
Remove defunct reload.py
I just use entr(1) now.
Diffstat (limited to 'haunt/reload.py')
| -rw-r--r-- | haunt/reload.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/haunt/reload.py b/haunt/reload.py deleted file mode 100644 index b4cc3c0..0000000 --- a/haunt/reload.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/home/jakob/.guix-profile/bin/python - -from livereload import Server, shell -import os - -site_output = "site" - -server = Server() - -for path in os.listdir("./"): - if path != site_output: - server.watch(path, "haunt build") - -server.serve(root=site_output) |