我正在写一个psake脚本。其中一项任务是从 Github 托管的存储库中提取文件:
Framework "4.0"
$ErrorActionPreference = "stop"
formatTaskName "`n##------ {0} ------##`n"
task DeployToLocalDevelopmentEnvironment {
# other commands
exec { git pull origin somebranch } # this is the line that fails
# other commands
}
pull
命令失败并显示以下消息:
看起来其余的错误消息在某处被截断,所以我实际上无法找到问题的原因。
关于如何查看完整错误消息的任何想法?