diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-07-21 10:18:13 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-08-06 13:07:57 -0500 |
commit | 3d8fa59aca1618799e53e7ee1aafa9728171bf8d (patch) | |
tree | 8868e3b5c6053b1affd6c4c23a03de4abd34a439 /g | |
parent | 19ec0a6d7189e2289f4cc0cb6bd45d2c8d87ed51 (diff) |
bootstrap is now core in ./g
Diffstat (limited to 'g')
-rwxr-xr-x | g | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |