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.
42 lines
1.1 KiB
42 lines
1.1 KiB
|
|
|
|
const User = "mac"
|
|
const Passwd = "admin"
|
|
const Ip = "172.17.104.135"
|
|
const UNITY_PATH = "/Applications/Unity/Hub/Editor/2018.4.26f1/Unity.app/Contents/MacOS/Unity"
|
|
|
|
' 默认以本地计算机名命名远端ios路径名
|
|
const RemoteWork = "%computername%"
|
|
|
|
' 私钥位置, 相对于当前目录
|
|
const key_pri = "key/zsl/id_rsa"
|
|
|
|
const LocalPath = "../../../client/*"
|
|
|
|
const LocalOutPut="./output"
|
|
|
|
const ExcludePath="Library,Temp,TempExt,H3DLog,XcodeProject,Packages"
|
|
|
|
const IpaName="framw-unity"
|
|
|
|
RemoteWrokPath="/Users/"+User+"/work/remote/"+RemoteWork
|
|
|
|
RemotePath = RemoteWrokPath+"/client/"
|
|
|
|
LocalLogPath = LocalOutPut+"/archive_log.txt"
|
|
RemoteLogPath = "/Users/"+User+"/work/remote/"+RemoteWork+"/client/build/build-ios-output/archive_log.txt"
|
|
|
|
LocalIPAPath = LocalOutPut+"/"+IpaName+".ipa"
|
|
RemoteIPAPath = "/Users/"+User+"/work/remote/"+RemoteWork+"/"+IpaName+".ipa"
|
|
|
|
|
|
' 需要自己指定rsync和ssh的路径
|
|
const MINGW_BIN_PATH=".\\DeltaCopy"
|
|
|
|
rsync = MINGW_BIN_PATH+"/rsync"
|
|
ssh = MINGW_BIN_PATH+"/ssh"
|
|
|
|
|
|
const PIPE_NAME = "framw-unity-ios-debug"
|
|
CONST PIPE_TYPE = "Debug"
|
|
|
|
|