14 lines
639 B
Bash
14 lines
639 B
Bash
|
#! /usr/bin/env sh
|
||
|
# Copyright 2012 Christian Dywan <christian@twotoasts.de>
|
||
|
#
|
||
|
# This script is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU Lesser General Public
|
||
|
# License as published by the Free Software Foundation; either
|
||
|
# version 2.1 of the License, or (at your option) any later version.
|
||
|
echo Running 'licensecheck'
|
||
|
test -z $(which licensecheck) && echo ...SKIPPED: not installed && return 0
|
||
|
test -n "$SRCDIR" && cd $SRCDIR
|
||
|
test -z "$BLDDIR" && BLDDIR=_build
|
||
|
find . \! -path './.*/*' -a \! -path "./$BLDDIR/*" -a \! -path "./debian/*" | xargs licensecheck | grep UNKNOWN && exit 1
|
||
|
echo ...OK
|