Home | History | Annotate | Download | only in android-mock
      1 #!/bin/bash
      2 #
      3 # Copyright (C) 2011 The Android Open Source Project.
      4 # This script imports the src, test, etc. from android-mock It DOESN'T commit
      5 # to git giving you a chance to review the changes. Remember that changes in
      6 # bin are normally ignored by git, but we need to force them this case.
      7 # This script doesn't take any parameter.
      8 
      9 svn export --force http://android-mock.googlecode.com/svn/trunk/ .
     10 rm lib/easymock.jar
     11 rm lib/junit.jar
     12 rm lib/javassist.jar
     13 rm lib/android/*
     14 # I don't check if there is something on lib on purpose; that way, if
     15 # anything new is added, we will get a visible error.
     16 rmdir lib/android
     17 rmdir lib
     18