hex

hex.git
git clone git://git.lenczewski.org/hex.git
Log | Files | Refs

build.sh (134B)


      1 #!/bin/sh
      2 
      3 set -ex
      4 
      5 cd server
      6 ./build.sh
      7 cd ..
      8 
      9 for dir in agents/*; do
     10 	( cd $dir; ./build.sh || echo "Failed to build: $dir" )
     11 done