source: java2python/geniuswebtranslator/copygeniusweb.sh

Last change on this file was 1554, checked in by wouter, 3 days ago

#451 AGAIN fix the script. What is going on, why is this rolled back every time??

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1#!/bin/bash
2
3# This script copies all source code files from a geniusweb project
4# into the local directories.
5# The local copy is needed so that we can add the code to toe source path
6# of the projecct.
7# This script must be run from the geniuswebtranslator root directory.
8# The geniusweb project must be checked out at the prpoer version
9# and the source directory must have been set properly
10# Set this to the actual name you checked out GeniusWeb.
11
12GENIUSWEB_SOURCE_DIR="/documents/Utilities/GeniusWeb/"
13
14rm -rf geniusweb/*
15
16copyPackage()
17{
18 src=${GENIUSWEB_SOURCE_DIR}'/'${1}'/'
19 rsync --recursive -v $src'src/' geniusweb/src/
20}
21
22copyPackage "bidspace"
23copyPackage "boa"
24copyPackage "events"
25copyPackage "exampleparties/randomparty"
26copyPackage "exampleparties/timedependentparty"
27copyPackage "exampleparties/conceder"
28copyPackage "ip"
29copyPackage "issuevalue"
30copyPackage "opponentmodel"
31copyPackage "party"
32copyPackage "profile"
33copyPackage "profileconnection"
34copyPackage "timeline"
35copyPackage "protocol"
36copyPackage "references"
37copyPackage "voting"
38
39
40
Note: See TracBrowser for help on using the repository browser.