Move MAINTAINERS to the top-level

This also removes the special-case inside bashbrew to ignore `library/MAINTAINERS`.
This commit is contained in:
Tianon Gravi 2015-02-12 16:25:27 -07:00
parent 1bfae8b547
commit fafcbfa3f5
1 changed files with 1 additions and 4 deletions

View File

@ -4,9 +4,6 @@ set -e
# make sure we can GTFO
trap 'echo >&2 Ctrl+C captured, exiting; exit 1' SIGINT
# so we can have fancy stuff like !(pattern)
shopt -s extglob
dir="$(dirname "$(readlink -f "$BASH_SOURCE")")"
library="$dir/../library"
@ -115,7 +112,7 @@ esac
repos=()
if [ "$buildAll" ]; then
repos=( "$library"/!(MAINTAINERS) )
repos=( "$library"/* )
fi
repos+=( "$@" )