2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index de05474..b6fbebe 100644
--- a/Makefile
+++ b/Makefile
@@ -8,11 +8,10 @@ install-geek install-net: install-%: package-cv ${PACKAGE_CONLANGS}
rsync -ah --delete --inplace dot$*/ /var/lib/www/xrvs.$*/
clean:
- rm -rf fead ${CONLANGS} web-cv dotnet dotgeek
+ rm -rf ${CONLANGS} web-cv dotnet dotgeek
webring: clean
- git clone https://trong.loang.net/~cnx/fead;
- python3 fead/src/fead.py -l 100 -F feeds -t webring.template -o layouts/partials/webring-articles.html
+ fead -l 100 -F feeds -t webring.template -o layouts/partials/webring-articles.html
dotnet: webring
hugo --quiet --baseURL="https://xrvs.net" --destination dotnet
diff --git a/shell.nix b/shell.nix
index bdf6db5..3617cda 100644
--- a/shell.nix
+++ b/shell.nix
@@ -8,6 +8,7 @@ pkgs.mkShell {
name="build-env";
buildInputs = with pkgs; [
gnumake git hugo rsync mdbook python3 cacert mdbook-toc
+ fead
];
}
|