diff options
author | Wolfgang Müller | 2021-05-07 14:25:11 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-05-07 14:25:11 +0200 |
commit | 45a87090f1ab3ceada40430dccec9caab8af84f5 (patch) | |
tree | 6b939be77df2807a9dd9e0009a2e94287c92f586 | |
parent | 73622b9aea4a18b7c9f2eade3b3c26ce694ef601 (diff) | |
download | site-45a87090f1ab3ceada40430dccec9caab8af84f5.tar.gz |
Have entr.sh build the page immediately
The -p flag didn't really make a lot of sense unless entr runs the
entire time. Additionally, sleep for a second in the loop to make it
easier to cancel.
-rw-r--r-- | entr.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,5 +2,6 @@ while true; do { fd -e xml -e md -e scss fd . util/ - } | entr -pcd make + } | entr -cd make + sleep 1 done |