Statistics
| Branch: | Tag: | Revision:

trustedintents / jenkins-build @ cba1dc86

History | View | Annotate | Download (265 Bytes)

1
#!/bin/sh
2

    
3
set -e
4
set -x
5

    
6
if [ -z $ANDROID_HOME ]; then
7
    if [ -e ~/.android/bashrc ]; then
8
        . ~/.android/bashrc
9
    else
10
        echo "ANDROID_HOME must be set!"
11
        exit
12
    fi
13
fi
14

    
15
export PATH=$PATH:$ANDROID_HOME/tools
16

    
17
cd trustedintents
18
./setup-ant