Welcome to mirror list, hosted at ThFree Co, Russian Federation.

remove_mwm_data.sh « script « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aedc6896df6b2a825dad49629b0aa7bda9aebfc2 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

MWM_DATA_PATH=/sdcard/MapsWithMe
if [ -z $1 ]; then
    adb shell rm -r $MWM_DATA_PATH
else
    adb -s "$1" shell rm -r $MWM_DATA_PATH
fi