Lines Matching +full:mockito +full:- +full:kotlin
5 # Retrieves the current mockito-kotlin source code into the current directory
8 set -e
10 if [ $# -ne 1 ]; then
15 if [ -z "$ANDROID_BUILD_TOP" ]; then
22 SOURCE="git://github.com/mockito/mockito-kotlin.git"
25 mockito-kotlin/src/main
28 working_dir="$(mktemp -d)"
29 trap "echo \"Removing temporary directory\"; rm -rf $working_dir" EXIT
31 echo "Fetching mockito-kotlin source into $working_dir"
37 rm -rf $include
38 mkdir -p $(dirname $include)
39 cp -R $working_dir/source/$include $include
45 perl -pi -e "s|^Version: .*$|Version: ${VERSION}|" "README.version"
49 grep -B 100 "Local Modifications" README.tmp > README.version