-
Notifications
You must be signed in to change notification settings - Fork 0
/
move.sh
84 lines (60 loc) · 1.38 KB
/
move.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#! bin/bash
DEST="../chat-sdk-android-v5"
chatsdk=( app-firebase core core-ui demo firebase-adapter firebase-push firebase-upload mod-auto mod-message-location mod-firebase-ui mod-profile-pictures mod-ui-extras )
cp README.md $DEST
cp LICENSE.md $DEST
chmod -R o+rwx $DEST
for t in ${chatsdk[@]}
do
echo $t
rm -r chat-sdk-$t/build
echo "$DEST/chat-sdk-$t"
rm -r "$DEST/chat-sdk-$t"
# rsync -a chat-sdk-$t $DEST
cp -r chat-sdk-$t $DEST
done
guru=( common firestore realtime )
for t in ${guru[@]}
do
# echo $t
rm -r sdk-guru-$t/build
echo "$DEST/sdk-guru-$t"
rm -r "$DEST/sdk-guru-$t"
# rm -r $DEST
# rsync -a sdk-guru-$t $DEST
cp -r sdk-guru-$t $DEST
done
other=( app-demo )
for t in ${other[@]}
do
# echo $t
rm -r $t/build
echo "$DEST/$t"
rm -r "$DEST/$t"
# rm -r $t/build
# rsync -a $t $DEST
cp -r $t $DEST
done
# DEST="../firestream-android"
# chmod -R o+rwx $DEST
# for t in ${guru[@]}
# do
# # echo $t
# rm -r sdk-guru-$t/build
# echo "$DEST/sdk-guru-$t"
# rm -r "$DEST/sdk-guru-$t"
# # rsync -a sdk-guru-$t $DEST
# cp -r sdk-guru-$t $DEST
# done
# other=( firestream firestream-firestore firestream-realtime )
# for t in ${other[@]}
# do
# # echo $t
# rm -r $t/build
# echo "$DEST/$t"
# rm -r "$DEST/$t"
# # rm -r $t/build
# # rsync -a $t $DEST
# cp -r $t $DEST
# done
echo "Done"