diff options
author | EuAndreh <eu@euandre.org> | 2020-02-14 22:59:19 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-02-14 22:59:19 -0300 |
commit | e70a82008013769abb408ff29871826c5d0ffca8 (patch) | |
tree | e5ecd924b595e6e8bbe416397eaea8b402339122 /default.nix | |
parent | Fix call of tidy: run in quiet mode (diff) | |
download | euandre.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.nix | 2 |
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 ''; }); }; |