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
|
# make sure we can GTFO
|
||||||
trap 'echo >&2 Ctrl+C captured, exiting; exit 1' SIGINT
|
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")")"
|
dir="$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
||||||
|
|
||||||
library="$dir/../library"
|
library="$dir/../library"
|
||||||
|
|
@ -115,7 +112,7 @@ esac
|
||||||
|
|
||||||
repos=()
|
repos=()
|
||||||
if [ "$buildAll" ]; then
|
if [ "$buildAll" ]; then
|
||||||
repos=( "$library"/!(MAINTAINERS) )
|
repos=( "$library"/* )
|
||||||
fi
|
fi
|
||||||
repos+=( "$@" )
|
repos+=( "$@" )
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue