浏览代码

Merge pull request #486 from infosiftr/move-maintainers

Move MAINTAINERS to the top-level
yosifkit 10 年之前
父节点
当前提交
9d3c527228
共有 2 个文件被更改,包括 1 次插入5 次删除
  1. 0 1
      MAINTAINERS
  2. 1 4
      bashbrew/bashbrew.sh

+ 0 - 1
library/MAINTAINERS → MAINTAINERS

@@ -1,3 +1,2 @@
-Joffrey Fuhrer <[email protected]> (@shin-)
 Tianon Gravi <[email protected]> (@tianon)
 Tianon Gravi <[email protected]> (@tianon)
 Joseph Ferguson <[email protected]> (@yosifkit)
 Joseph Ferguson <[email protected]> (@yosifkit)

+ 1 - 4
bashbrew/bashbrew.sh

@@ -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+=( "$@" )