summary refs log tree commit diff
path: root/bin/build-twttr-tools
diff options
context:
space:
mode:
Diffstat (limited to 'bin/build-twttr-tools')
-rwxr-xr-xbin/build-twttr-tools33
1 files changed, 0 insertions, 33 deletions
diff --git a/bin/build-twttr-tools b/bin/build-twttr-tools
deleted file mode 100755
index da54fe5..0000000
--- a/bin/build-twttr-tools
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-
-SOURCE_ROOT="${HOME}/src/source"
-
-if [ ! -d "${SOURCE_ROOT}" ]; then
-  echo "It looks like ${SOURCE_ROOT} is not available."
-  exit 1
-fi
-
-TARGETS=(
-  'src/python/twitter/checkstyle:check'
-  'src/python/twitter/messaging/julep/:julep'
-  'src/python/twitter/messaging/oncall/:oncall'
-  'src/python/twitter/messaging/tools/:bookkeeper'
-  'src/python/twitter/messaging/tools/:bookkeeper-rereplicator'
-  'src/python/twitter/messaging/tools/:customers-requests'
-  'src/python/twitter/messaging/tools/:host-status'
-  'src/python/twitter/messaging/tools/:msg-config'
-  'src/python/twitter/messaging/tools/:partition-ownership'
-  'src/python/twitter/messaging/tools/:proxy-admin'
-  'src/python/twitter/messaging/xdc_replicator_check/:streams-to-replicate'
-  'src/python/twitter/ops/mesos/bin/:mesosops'
-)
-
-cd "${SOURCE_ROOT}"
-
-for target in "${TARGETS[@]}"; do
-  echo -n "Build $target"
-  ./pants -q binary "${target}"
-done
-
-echo "Done."
-