我正在尝试制作一个 powershell 脚本来为我的项目设置 Transifex,当我尝试运行时,我不断收到相同的错误:
& tx "set --source -r myproject.auth-resx_myproject -l ""en"" ""C:\MyProjectDir\ResourceFile.resx"""
错误是:
tx.exe : tx: Command set --source -r myproject.auth-resx_myproject -l en C:\MyProjectDir\ResourceFile.resx not found
At line:1 char:2
+ & <<<< tx "set --source -r myproject.auth-resx_myproject -l ""en"" ""C:\MyProjectDir\ResourceFile.resx"""
+ CategoryInfo : NotSpecified: (tx: Command set....resx not found:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
看起来有些字符没有正确转义,因为在没有执行运算符和引号的情况下运行脚本。
tx set --source -r myproject.auth-resx_myproject -l "en" "C:\MyProjectDir\ResourceFile.resx"
我究竟做错了什么?