6 echo "usage: dcp-recent REPODIR"
24 if [ ! -d "$repodir" ]; then
25 echo "dcp-recent: cannot find $repodir" >&2
29 if ! rungit tag -l | grep -q ^lastbuild$; then
33 lastbuild="$(rungit rev-parse lastbuild)"
34 master="$(rungit rev-parse master)"
36 [ "$master" = "$lastbuild" ]