Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'releng.control/get-customPages.sh')
-rw-r--r--releng.control/get-customPages.sh46
1 files changed, 0 insertions, 46 deletions
diff --git a/releng.control/get-customPages.sh b/releng.control/get-customPages.sh
deleted file mode 100644
index ab73b1430..000000000
--- a/releng.control/get-customPages.sh
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/sh
-
-# it is assumed we are executing this in COMMON_PAGES or the parent of COMMON_PAGES
-COMMON_PAGES=commonPages
-
-# This script file is to help get builds started "fresh", when
-# the ${COMMON_PAGES} directory already exists on local file system.
-# While it is in the cvs repository in ${COMMON_PAGES}, it is
-# meant to be executed from the parent directory
-# of ${COMMON_PAGES} on the file system.
-
-# export is used, instead of checkout, just to avoid the CVS directories and since this code
-# for a local build, there should never be a need to check it back in to CVS.
-
-
-if [ ! -e ${COMMON_PAGES} ]
-then
- cd ..
- if [ ! -e ${COMMON_PAGES} ]
- then
- echo "${COMMON_PAGES} does not exist as sub directory";
- exit 1;
- fi
-fi
-
-echo
-
-current=`pwd`
-echo " removing all of ${COMMON_PAGES} from ${current} ..."
-rm -fr downloadsites
-rm -fr ${COMMON_PAGES}/*
-rm -fr ${COMMON_PAGES}/.project
-rm -fr ${COMMON_PAGES}/.settings
-mkdir -p ${COMMON_PAGES}
-mkdir -p committers
-
-echo " checking out head of ${COMMON_PAGES} from cvs ..."
-cvs -Q -f -d :pserver:anonymous@dev.eclipse.org:/cvsroot/webtools export -d downloadsites -r HEAD webtools.releng/downloadsites
-
-echo " copying commonPages"
-cp -r downloadsites/webtools/commonPages/* ${COMMON_PAGES}
-echo " copying artifacts to committers"
-cp -r downloadsites/webtools/artifacts/* committers
-
-echo
-

Back to the top