使用FAKE执行shell命令时输出奇怪

时间:2016-03-31 02:29:34

标签: .net build f# f#-fake

我的FAKE构建脚本包含以下辅助函数:

let Exec command args =
    printfn "Command: %s %s" command args
    let result = Shell.Exec(command, args)
    printfn "After"
    if result <> 0 then failwithf "%s exited with error %d" command result

当我尝试使用此命令执行zip命令时,我看到以下内容:

enter image description here

我无法弄清楚为什么输出亚洲字符。拉链正确创建。在终端中自行运行zip命令仅输出预期的字符(全部为英文)。

有人可以帮助我吗?

0 个答案:

没有答案