Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

12 lines
249 B
Bash
Executable File

#! /usr/bin/env bash
#
# Default canonifier that combines several others.
DIR="$(cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)"
$DIR/diff-remove-timestamps \
| $DIR/diff-remove-zkg-version \
| $DIR/diff-remove-abspath
exit 0