12 lines
249 B
Bash
Executable File
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
|