diff options
author | Siva Velusamy <vsiva@google.com> | 2013-09-12 17:56:45 -0700 |
---|---|---|
committer | Siva Velusamy <vsiva@google.com> | 2013-09-13 10:14:33 -0700 |
commit | fc232c591ee221614636e472bd07c57b86eed958 (patch) | |
tree | 9b7495c2ab0ca0f1e5f024ffc20245d623e3fde6 /eclipse/scripts | |
parent | 372568afc78c722ce6324f110e244cc26528fd34 (diff) | |
download | sdk-fc232c591ee221614636e472bd07c57b86eed958.zip sdk-fc232c591ee221614636e472bd07c57b86eed958.tar.gz sdk-fc232c591ee221614636e472bd07c57b86eed958.tar.bz2 |
Update path to studio build script
Change-Id: I3dbd810ea563c5e61b95efb22aafdcd26c901bab
Diffstat (limited to 'eclipse/scripts')
-rwxr-xr-x | eclipse/scripts/build_server.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclipse/scripts/build_server.sh b/eclipse/scripts/build_server.sh index e96abe1..81686af 100755 --- a/eclipse/scripts/build_server.sh +++ b/eclipse/scripts/build_server.sh @@ -118,7 +118,9 @@ function build_adt_ide() { # This needs to run from the top android directory D="$PROG_DIR" cd "$D/../../../" && echo "Switched to directory $PWD" - for sc in */*/*/build_ide*.sh; do + + IDE_SCRIPTS="sdk/eclipse/scripts/build_ide.sh tools/idea/build_ide_ext.sh" + for sc in $IDE_SCRIPTS; do if [[ -x $sc ]]; then echo "RUNNING $sc from $PWD" $sc "$DEST_DIR" "$QUALIFIER" "${preview}${BUILD_NUMBER:-$QUALIFIER}" |