forked from androidx/androidx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcleanBuild.sh
executable file
·53 lines (45 loc) · 1.21 KB
/
cleanBuild.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
set -e
DO_PROMPT=true
if [ "$1" == "-y" ]; then
DO_PROMPT=false
shift
fi
goals="$@"
function usage() {
echo
echo "Usage: $0 [-y] <tasks>"
echo "Runs a clean build of <tasks>"
echo
echo
echo "For example:"
echo
echo " $0 assembleRelease # or any other arguments you would normally give to ./gradlew"
echo
echo
echo "-y"
echo " Don't prompt the user to confirm that they want to run a clean build"
exit 1
}
if [ "$goals" == "" ]; then
usage
fi
if [ ! -e "./gradlew" ]; then
echo "Error; ./gradlew does not exist. Must cd to a dir containing a ./gradlew first"
# so that this script knows which gradlew to use (in frameworks/support or frameworks/support/ui)
exit 1
fi
function confirm() {
# Confirm whether the user wants to run this script instead of diagnose-build-failure.sh
# Recall that we already mentioned the existence of diagnose-build-failure.sh above
echo
echo "Press <Enter> to run a clean build (./gradlew --clean $goals) or Ctrl-C to cancel"
if [ "$DO_PROMPT" == "true" ]; then
read response
fi
}
confirm
scriptDir="$(cd $(dirname $0) && pwd)"
checkoutDir="$(cd $scriptDir/../.. && pwd)"
export OUT_DIR="$checkoutDir/out"
./gradlew --clean $goals