我有一个powershell脚本:
Invoke-Expression -Command:("mysql")
当我通过vsts将其发布到我的azure服务器时,它会返回:
exited with code '1'
我注意到它跑了
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command
如何让VST在服务器上运行具有全局依赖关系的脚本?
1条答案
按热度按时间qhhrdooz1#
没有参数,mysql客户机是一个交互式命令,但是powershell以非交互式方式启动进程。
还可以检查invoke command and start process,因为这些cmdlet可能更合适。