You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
560 B
16 lines
560 B
#!/bin/sh
|
|
if [ $# != 1 ] ; then
|
|
echo "please input versin num param, like 1.0.120"
|
|
exit 1;
|
|
fi
|
|
|
|
mkdir /data/wwwroot/pandora_patch/android/en/$1/
|
|
mkdir /data/wwwroot/pandora_patch/android/taptap/$1/
|
|
mkdir /data/wwwroot/pandora_patch/ios/en/$1/
|
|
|
|
mv /data/pandora_version/aab_patch/android/en/$1/*.upk /data/wwwroot/pandora_patch/android/en/$1/
|
|
mv /data/pandora_version/apk_patch/android/en/$1/*.upk /data/wwwroot/pandora_patch/android/taptap/$1/
|
|
mv /data/pandora_version/ipa_patch/ios/en/$1/*.upk /data/wwwroot/pandora_patch/ios/en/$1/
|
|
|
|
./list_version_dir.sh $1
|
|
|
|
|