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 |
|
---|
12 | GENIUSWEB_SOURCE_DIR="/documents/Utilities/GeniusWeb/"
|
---|
13 |
|
---|
14 | rm -rf geniusweb/*
|
---|
15 |
|
---|
16 | copyPackage()
|
---|
17 | {
|
---|
18 | src=${GENIUSWEB_SOURCE_DIR}'/'${1}'/'
|
---|
19 | rsync --recursive -v $src'src/' geniusweb/src/
|
---|
20 | }
|
---|
21 |
|
---|
22 | copyPackage "bidspace"
|
---|
23 | copyPackage "boa"
|
---|
24 | copyPackage "events"
|
---|
25 | copyPackage "exampleparties/randomparty"
|
---|
26 | copyPackage "exampleparties/timedependentparty"
|
---|
27 | copyPackage "exampleparties/conceder"
|
---|
28 | copyPackage "ip"
|
---|
29 | copyPackage "issuevalue"
|
---|
30 | copyPackage "opponentmodel"
|
---|
31 | copyPackage "party"
|
---|
32 | copyPackage "profile"
|
---|
33 | copyPackage "profileconnection"
|
---|
34 | copyPackage "timeline"
|
---|
35 | copyPackage "protocol"
|
---|
36 | copyPackage "references"
|
---|
37 | copyPackage "voting"
|
---|
38 |
|
---|
39 |
|
---|
40 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.