summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2011-07-21 10:18:13 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2011-08-06 13:07:57 -0500
commit3d8fa59aca1618799e53e7ee1aafa9728171bf8d (patch)
tree8868e3b5c6053b1affd6c4c23a03de4abd34a439
parent19ec0a6d7189e2289f4cc0cb6bd45d2c8d87ed51 (diff)
bootstrap is now core in ./g
-rwxr-xr-xg6
1 files changed, 3 insertions, 3 deletions
diff --git a/g b/g
index bf6d8871ad85..0e4165e9bede 100755
--- a/g
+++ b/g
@@ -145,7 +145,7 @@ while shift ; do
done
# do it!
-DIRS="bootstrap $(cd $CLONEDIR ; ls)"
+DIRS="core $(cd $CLONEDIR ; ls)"
if [ "$COMMAND" = "clone" ] ; then
DIRS=$(cat "$RAWBUILDDIR/bin/repo-list")
# update hooks in the main repo too
@@ -155,7 +155,7 @@ for REPO in $DIRS ; do
DIR="$CLONEDIR/$REPO"
NAME="$REPO"
HOOKDIR="../../../../git-hooks"
- if [ "$REPO" = "bootstrap" ] ; then
+ if [ "$REPO" = "core" ] ; then
DIR="$RAWBUILDDIR"
NAME="main repo"
HOOKDIR="../../git-hooks"
@@ -228,7 +228,7 @@ for REPO in $DIRS ; do
;;
clone)
EXTRA="$(git config remote.origin.url)"
- EXTRA=${EXTRA/bootstrap/${REPO}}
+ EXTRA=${EXTRA/core/${REPO}}
;;
esac