summaryrefslogtreecommitdiff
path: root/.config/git/hooks/with-signoff/prepare-commit-msg
blob: fd769314974172ad0fa4bba264901198a6db03a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

NAME=$(git config user.name)
EMAIL=$(git config user.email)

if [ -z "$NAME" ]; then
    echo "empty git config user.name"
    exit 1
fi

if [ -z "$EMAIL" ]; then
    echo "empty git config user.email"
    exit 1
fi

git interpret-trailers --if-exists doNothing --trailer \
    "Signed-off-by: $NAME <$EMAIL>" \
    --in-place "$1"
>2012-06-20 12:00:59 +0200 commitf3761c3950bd2ad813095a240d6a3dcb885d2431 (patch) treee733d73ada32846134004f6402ab55ab3e215ee7 /include/sound/pcm_params.h parent33eb3311f3ad4a14f2e55d36fdb0d3ec54712231 (diff)
ALSA: Add missing include of pcm.h to pcm_params.h
There's a dependency but no #include. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound/pcm_params.h')