Last change
on this file since 1551 was 1547, checked in by wouter, 9 days ago |
#450 script to update geniuswebtranslator code
|
-
Property svn:executable
set to
*
|
File size:
987 bytes
|
Rev | Line | |
---|
[1547] | 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 |
|
---|
| 10 | GENIUSWEB_SOURCE_DIR="/documents/UtilitiesNew/PrivateGeniusWeb"
|
---|
| 11 |
|
---|
| 12 | copyPackage()
|
---|
| 13 | {
|
---|
| 14 | src=${GENIUSWEB_SOURCE_DIR}'/'${1}'/'
|
---|
| 15 | target='geniusweb/'
|
---|
| 16 | rsync --recursive -v $src'src/' $target'/src/'
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | copyPackage "bidspace"
|
---|
| 20 | copyPackage "boa"
|
---|
| 21 | copyPackage "events"
|
---|
| 22 | copyPackage "exampleparties/randomparty"
|
---|
| 23 | copyPackage "exampleparties/timedependentparty"
|
---|
| 24 | copyPackage "exampleparties/conceder"
|
---|
| 25 | copyPackage "ip"
|
---|
| 26 | copyPackage "issuevalue"
|
---|
| 27 | copyPackage "opponentmodel"
|
---|
| 28 | copyPackage "party"
|
---|
| 29 | copyPackage "profile"
|
---|
| 30 | copyPackage "profileconnection"
|
---|
| 31 | copyPackage "progress"
|
---|
| 32 | copyPackage "protocol"
|
---|
| 33 | copyPackage "references"
|
---|
| 34 | copyPackage "voting"
|
---|
| 35 |
|
---|
| 36 |
|
---|
| 37 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.