File: diff-canonifier

package info (click to toggle)
zkg 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,740 kB
  • sloc: python: 5,910; sh: 268; makefile: 265; cpp: 24
file content (11 lines) | stat: -rwxr-xr-x 249 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#! /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