Move MAINTAINERS to the top-level
This also removes the special-case inside bashbrew to ignore `library/MAINTAINERS`.
This commit is contained in:
parent
1bfae8b547
commit
fafcbfa3f5
|
|
@ -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+=( "$@" )
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue