oneRain 2020-03-04 16:11:33 +08:00
parent ea42db0b5e
commit 51b0d0efce
1 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
#!/bin/sh #!/bin/sh
mkdir DLLs mkdir DLLs
rsync -avz ./Storage/bin/Release/netstandard2.0/ DLLs rsync -avz ./Storage/bin/Release/netstandard2.0/ ./DLLs/
#rsync -avz ./RTM/RTM.PCL/bin/Release/ DLLs #rsync -avz ./RTM/RTM.PCL/bin/Release/ DLLs
#rsync -avz ./LiveQuery/LiveQuery.PCL/bin/Release/ DLLs #rsync -avz ./LiveQuery/LiveQuery.PCL/bin/Release/ DLLs
zip -r LeanCloud-SDK-Standard.zip DLLs zip -r LeanCloud-SDK-Standard.zip DLLs
rm -r DLLs rm -r DLLs
mkdir Plugins mkdir Plugins
rsync -av --exclude='UnityEngine.dll' ./Storage/bin/Release/netstandard2.0/ Plugins rsync -av --exclude='UnityEngine.dll' ./Storage/bin/Release/netstandard2.0/ ./Plugins/
#rsync -av --exclude='UnityEngine.dll' ./RTM/RTM.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 #rsync -av --exclude='UnityEngine.dll' ./LiveQuery/LiveQuery.Unity/bin/Release/ Plugins
zip -r LeanCloud-SDK-Unity.zip Plugins zip -r LeanCloud-SDK-Unity.zip Plugins