diff options
author | Siva Velusamy <vsiva@google.com> | 2013-09-13 18:26:18 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-09-13 18:26:18 +0000 |
commit | 2c6fcd8af4606c581aa667b85403572d82505eb3 (patch) | |
tree | 7f5f56fdac8883ffa5f0b30d6be6ef4150bdb97e /eclipse/scripts/build_server.sh | |
parent | 7153cf37a740188706549484df6a440026085778 (diff) | |
parent | fc232c591ee221614636e472bd07c57b86eed958 (diff) | |
download | sdk-2c6fcd8af4606c581aa667b85403572d82505eb3.zip sdk-2c6fcd8af4606c581aa667b85403572d82505eb3.tar.gz sdk-2c6fcd8af4606c581aa667b85403572d82505eb3.tar.bz2 |
Merge "Update path to studio build script"
Diffstat (limited to 'eclipse/scripts/build_server.sh')
-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 52c4ea9..54deaa6 100755 --- a/eclipse/scripts/build_server.sh +++ b/eclipse/scripts/build_server.sh @@ -119,7 +119,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}" |