diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2017-02-16 13:38:39 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2017-02-16 13:38:39 -0800 |
commit | edfd0f5bcc591dc20023a6f48c35f887fcb3555f (patch) | |
tree | baf4a573de7307233040ca38646d48edab305263 /bin/build-twttr-tools | |
parent | [notes] up (diff) | |
download | emacs.d-edfd0f5bcc591dc20023a6f48c35f887fcb3555f.tar.gz |
[bin] prefix twitter's scripts with 'tw'.
Diffstat (limited to 'bin/build-twttr-tools')
-rwxr-xr-x | bin/build-twttr-tools | 33 |
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." - |