2019-07-19 16:58:44 +08:00
|
|
|
#!/bin/sh
|
2019-07-22 11:54:20 +08:00
|
|
|
mkdir DLLs
|
|
|
|
rsync -avz ./Storage/Storage.PCL/bin/Release/ DLLs
|
|
|
|
rsync -avz ./RTM/RTM.PCL/bin/Release/ DLLs
|
|
|
|
rsync -avz ./LiveQuery/LiveQuery.PCL/bin/Release/ DLLs
|
|
|
|
zip -r LeanCloud-Portable-SDK.zip DLLs
|
|
|
|
rm -r DLLs
|
|
|
|
|
2019-07-19 16:58:44 +08:00
|
|
|
mkdir Plugins
|
2019-07-22 11:54:20 +08:00
|
|
|
rsync -av --exclude='UnityEngine.dll' ./Storage/Storage.Unity/bin/Release/ Plugins
|
|
|
|
rsync -av --exclude='UnityEngine.dll' ./RTM/RTM.Unity/bin/Release/ Plugins
|
|
|
|
rsync -av --exclude='UnityEngine.dll' ./LiveQuery/LiveQuery.Unity/bin/Release/ Plugins
|
2019-07-19 18:09:40 +08:00
|
|
|
zip -r LeanCloud-Unity-SDK.zip Plugins
|
2019-07-19 16:58:44 +08:00
|
|
|
rm -r Plugins
|