summaryrefslogblamecommitdiff
path: root/bin/build-twttr-world
blob: 85d4f4e3d2076d1dfd3541840bc6d33c286e301c (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                               
                                                          
                                                                  



                                                                            










                                 
#!/bin/bash

TARGETS=(
  'science/src/python/twitter/checkstyle:check'
  'science/src/python/twitter/messaging/tools/:bookkeeper'
  'science/src/python/twitter/messaging/tools/:customers-requests'
  'science/src/python/twitter/messaging/tools/:eventbus-partition-ownership'
  'science/src/python/twitter/messaging/tools/:host-status'
  'science/src/python/twitter/messaging/tools/:msg-config'
  'science/src/python/twitter/messaging/tools/:proxy-admin'
)

cd ~/src/source

for target in "${TARGETS[@]}"; do
  echo -n "Build $target"
  ./pants -q binary "${target}"
done

echo "Done."