git-checks 4.3.2

Checks to run against a topic in git to enforce coding standards.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -e

readonly path="$1"
shift

readonly arg="$1"
shift

if ! [ "$arg" = "value" ]; then
    exit 1
fi

sed -i -e "s/ARG/$arg/g" "$path"