rcg

rcg.git
git clone git://git.lenczewski.org/rcg.git
Log | Files | Refs | README | LICENSE

build.sh (103B)


      1 #!/bin/sh
      2 
      3 cd server
      4 
      5 ./build.sh
      6 
      7 cd ..
      8 
      9 for dir in agents/*; do
     10 	cd $dir
     11 
     12 	./build.sh
     13 
     14 	cd ../..
     15 done