プロジェクトの Transifex をセットアップするための powershell スクリプトを作成しようとしていますが、実行しようとすると同じエラーが発生し続けます。
& 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"
私は何を間違っていますか?