From f645e1bc33365b4edcbff1f2cfad49efce19246d Mon Sep 17 00:00:00 2001 From: Jan Holesovsky Date: Wed, 18 Aug 2010 17:48:07 +0200 Subject: Split build: Revert it for now. --- download | 64 ---------------------------------------------------------------- 1 file changed, 64 deletions(-) delete mode 100755 download (limited to 'download') diff --git a/download b/download deleted file mode 100755 index 1b4d83d46684..000000000000 --- a/download +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/bash -# -# Clone the rest of the remote repositories to have the complete ooo-build -# sources - -usage() { - cat 1>&2 <&2 - echo 1>&2 - usage -fi - -# skip the repo where we are -SKIP="$SKIP,`echo $ORIGIN | sed 's#.*/\([^/]\+\)/\?$#\1#'`" - -# do the work -for DIR in $COMPONENTS -do - # skip? - ( echo "$SKIP" | grep "\<$DIR\>" > /dev/null 2>&1 ) && continue - # already cloned? - [ -d ../$DIR ] && { echo "* Not clonnig $DIR, already exists" ; continue ; } - - # clone! - echo "* Cloning $DIR..." - ( cd .. ; git clone "$REPO/$DIR" ) -done -- cgit