8042417: hgforest: allow local clone of extra repos
authormduigou
Tue, 06 May 2014 13:24:51 -0700
changeset 24233 5c59e988c04e
parent 24232 ddfae175a8d2
child 24234 3a0155bc559c
8042417: hgforest: allow local clone of extra repos Reviewed-by: chegar, erikj
common/bin/hgforest.sh
--- a/common/bin/hgforest.sh	Tue May 06 11:43:14 2014 +0200
+++ b/common/bin/hgforest.sh	Tue May 06 13:24:51 2014 -0700
@@ -144,8 +144,10 @@
       repos="${repos} ${i}"
     fi
   done
+
+  pull_default_tail=`echo ${pull_default} | sed -e 's@^.*://[^/]*/\(.*\)@\1@'`
+
   if [ "${command_args}" != "" ] ; then
-    pull_default_tail=`echo ${pull_default} | sed -e 's@^.*://[^/]*/\(.*\)@\1@'`
     if [ "x${pull_default}" = "x${pull_default_tail}" ] ; then
       echo "ERROR: Need initial clone from non-local source" > ${status_output}
       exit 1
@@ -156,6 +158,16 @@
         repos_extra="${repos_extra} ${i}"
       fi
     done
+  else
+    if [ "x${pull_default}" = "x${pull_default_tail}" ] ; then
+      # local source repo. Copy the extras ones that exist there.
+      for i in ${subrepos_extra} ; do
+        if [ -f ${pull_default}/${i}/.hg/hgrc -a ! -f ${i}/.hg/hgrc ] ; then
+          # sub-repo there in source but not here
+          repos_extra="${repos_extra} ${i}"
+        fi
+      done
+    fi
   fi
   at_a_time=2
   # Any repos to deal with?