source: java2python/geniuswebtranslator/copygeniusweb.sh@ 1551

Last change on this file since 1551 was 1547, checked in by wouter, 7 days ago

#450 script to update geniuswebtranslator code

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