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

push_data.sh « script « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 014a17a4e664e17c9178860e7ba8408679327ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

DATA=../tests/data
DST=/sdcard/MapsWithMe

# clean all
adb -s $1 shell rm $DST/*.kmz
adb -s $1 shell rm $DST/*.kml

# copy files
for file in $(find $DATA -type f) ; do
    echo $file
    adb -s $1 push $file $DST
done