diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2026-04-30 10:08:54 +0200 |
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2026-04-30 10:08:54 +0200 |
| commit | 4752cdf9b0a7bb9936e9e30af6dce7ebab3a03dc (patch) | |
| tree | 46070350a9ace1744f5df8a691bcf0645e1fa70b | |
| parent | 65571bce0cc9dc947c1a6d8533ef464109d03043 (diff) | |
| download | blog-4752cdf9b0a7bb9936e9e30af6dce7ebab3a03dc.tar.gz | |
Update lychee usage
| -rw-r--r-- | flake.nix | 2 | ||||
| -rwxr-xr-x | script/check | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -65,7 +65,7 @@ nativeBuildInputs = with pkgs; [ lychee ]; checkPhase = '' "${packages.generator}/bin/site" rebuild - lychee --offline --no-progress --require-https --root-dir "$( realpath _site )" _site + lychee --offline --no-progress --require-https --root-dir _site _site ''; installPhase = '' mkdir $out diff --git a/script/check b/script/check index 49f8820..aff8606 100755 --- a/script/check +++ b/script/check @@ -7,4 +7,4 @@ set -o xtrace cabal v2-run exe:site -- rebuild # See also lychee.toml and .lycheeignore. -lychee --cache --no-progress --require-https --root-dir "$( realpath _site )" _site +lychee --cache --no-progress --require-https --root-dir _site _site |