Lines Matching +full:- +full:- +full:rm
1 #!/bin/bash -e
8 # WARNING: This script will rm -rf files in the directory in
11 ANDROID_BRANCH_NAME=$(repo info . | sed -n 's/Current revision: \(.*\)/\1/p')
14 if [ $# -ne 1 ]
34 rm -rf third_party/disklrucache
43 git rm -rf samples || true
44 git rm -rf integration || true
45 git rm -rf static || true
46 git rm -rf glide || true
47 git rm -rf .idea || true
50 git rm -rf library/src/androidTest || true
51 git rm -rf third_party/gif_decoder/src/androidTest || true
52 git rm -rf third_party/gif_encoder/src/androidTest || true
57 git rm -rf third_party/disklrucache
58 rm -rf third_party/disklrucache
64 rm -rf $REMOTE_DISK_PATH/src/test
65 # Remove git related things to avoid re-adding a submodule.
66 rm -rf $REMOTE_DISK_PATH/.git
67 rm -rf $REMOTE_DISK_PATH/.gitmodule
73 find . -name "*gradle*" | xargs -r git rm -rf
74 find . -name "*checkstyle*.xml" | xargs -r git rm -rf
75 find . -name "*pmd*.xml" | xargs -r git rm -rf
76 find . -name "*findbugs*.xml" | xargs -r git rm -rf
77 find . -name "*.iml" | xargs -r git rm -rf
80 GIT_SHA=$(git rev-parse FETCH_HEAD)