# HG changeset patch # User katleman # Date 1342646328 25200 # Node ID 3f6c72d1c2a6e5c9e7d81c3dc984886678a128ad # Parent aaae5471808dd3b0a8ec9f39b541a23d1b35952c# Parent ba77d95ed21906959dc0bfb46a3b77f7b04b649a Merge diff -r aaae5471808d -r 3f6c72d1c2a6 make/scripts/hgforest.sh --- a/make/scripts/hgforest.sh Thu Jul 12 16:47:51 2012 -0700 +++ b/make/scripts/hgforest.sh Wed Jul 18 14:18:48 2012 -0700 @@ -98,7 +98,8 @@ ( ( if [ "${command}" = "clone" -o "${command}" = "fclone" ] ; then - cline="hg clone ${pull_default}/${i} ${i}" + pull_newrepo="`echo ${pull_default}/${i} | sed -e 's@\([^:]/\)//*@\1@g'`" + cline="hg clone ${pull_newrepo} ${i}" echo "# ${cline}" ( eval "${cline}" ) else @@ -121,7 +122,8 @@ n=`expr ${n} '+' 1` ( ( - cline="hg clone ${pull_extra}/${i} ${i}" + pull_newextrarepo="`echo ${pull_extra}/${i} | sed -e 's@\([^:]/\)//*@\1@g'`" + cline="hg clone ${pull_newextrarepo} ${i}" echo "# ${cline}" ( eval "${cline}" ) echo "# exit code $?"