summaryrefslogtreecommitdiff
path: root/paccheck.hook
blob: f652fe063e737d63eb75b9a57af2b2c332dfd135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

case "$1" in
  'head')
    :
  ;;
  'foot')
    echo '----------------------- Pacman Check Begin -------------------------'
    echo
    if paccheck --list-broken --sha256sum; then
      echo 'No errors found.'
    fi
    echo
    echo '------------------------ Pacman Check End --------------------------'
  ;;
  *)
    >&2 printf 'usage: %s head|foot\n' "${0##*/}"
    exit 1
  ;;
esac