diff options
Diffstat (limited to 'ops/deploy-whitby/deploy-whitby.sh')
-rwxr-xr-x | ops/deploy-whitby/deploy-whitby.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/deploy-whitby/deploy-whitby.sh b/ops/deploy-whitby/deploy-whitby.sh index e41ec681f170..756aa7ae0801 100755 --- a/ops/deploy-whitby/deploy-whitby.sh +++ b/ops/deploy-whitby/deploy-whitby.sh @@ -35,7 +35,7 @@ current=$(nix show-derivation /run/current-system | jq -r 'keys | .[0]') new=$(nix-instantiate -A ops.nixos.whitbySystem "$worktree_dir") diff_filename="$(drv_hash "$current")..$(drv_hash "$new").html" -nix-diff "$current" "$new" --color always \ +nvd --color always diff "$current" "$new" \ | ansi2html \ >| "$HTML_ROOT/diff/$diff_filename" chmod a+r "$HTML_ROOT/diff/$diff_filename" |