Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ea5de711c0258dd1cf3cfd7bbe378a99b2f2e497 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash

#--------------------------------------------------------------------------------
# Copyright (c) 2012 CEA LIST.
#
#    
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#    Nicolas Bros (Mia-Software)
#--------------------------------------------------------------------------------

SCRIPTS_LOC=/opt/public/modeling/mdt/papyrus
SVN_LOC="file:///svnroot/modeling/org.eclipse.mdt.papyrus/trunk/releng/org.eclipse.mdt.papyrus.releng.buckminster/serverConfig"

cd "$SCRIPTS_LOC"

scripts="
addDownloadStats-extra.xsl
addDownloadStats-main.xsl
addDownloadStats.sh
addToComposite.sh
addToComposite.xsl
cronPromote.sh
cronPromoteMonitor.sh
manualPromote.sh
promoteFunctions.sh
"

for i in $scripts; do
	svn export "$SVN_LOC/$i"
	chmod +x "$i"
done

Back to the top