source: java2python/geniuswebtranslator/copygeniusweb.sh

Last change on this file was 1554, checked in by wouter, 5 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
RevLine 
[1547]1#!/bin/bash
2
3# This script copies all source code files from a geniusweb project
4# into the local directories.
[1552]5# The local copy is needed so that we can add the code to toe source path
6# of the projecct.
[1547]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
[1554]12GENIUSWEB_SOURCE_DIR="/documents/Utilities/GeniusWeb/"
[1547]13
[1552]14rm -rf geniusweb/*
15
[1547]16copyPackage()
17{
18 src=${GENIUSWEB_SOURCE_DIR}'/'${1}'/'
[1552]19 rsync --recursive -v $src'src/' geniusweb/src/
[1547]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"
[1553]34copyPackage "timeline"
[1547]35copyPackage "protocol"
36copyPackage "references"
37copyPackage "voting"
38
39
40
Note: See TracBrowser for help on using the repository browser.