oss_up.bat 396 B

12345678910111213141516
  1. @echo off
  2. if "%1"=="" goto help
  3. set target=%1
  4. if "%2"=="" goto help
  5. set ver=%2
  6. bintool\ossutil\ossutil64.exe -c bintool\ossutil\.ossutilconfig cp -f Client.bytes oss://loyalsoft/jzhj2023/%target%/cfg/%ver%/Client.bytes
  7. goto exit
  8. :help
  9. echo 用法: %0 targe clientver
  10. echo target 为渠道目标 (dev, yyb,hw等)
  11. echo clientver 为客户端版本
  12. goto exit
  13. :exit