aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-02-14 22:59:19 -0300
committerEuAndreh <eu@euandre.org>2020-02-14 22:59:19 -0300
commite70a82008013769abb408ff29871826c5d0ffca8 (patch)
treee5ecd924b595e6e8bbe416397eaea8b402339122 /default.nix
parentFix call of tidy: run in quiet mode (diff)
downloadeuandre.org-e70a82008013769abb408ff29871826c5d0ffca8.tar.gz
euandre.org-e70a82008013769abb408ff29871826c5d0ffca8.tar.xz
Call tidy-content.sh in build derivation
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 0f98063..4fbdc61 100644
--- a/default.nix
+++ b/default.nix
@@ -36,7 +36,7 @@ in rec {
buildInputs = [ jekyllEnv pkgs.html-tidy ];
buildPhase = ''
jekyll build -d $out
- find $out -type f -name '*.html' | xargs -I{} tidy -errors -utf8 -indent -modify {}
+ ./scripts/tidy-content.sh $out
'';
});
};