我正在尝试使用脚本中的自定义切换参数启动grunt serve
,但不断获取与位置参数相关的错误
这是我到目前为止所尝试的内容:
start-process grunt serve -ArgumentList {-switch1;-switch2} -WorkingDirectory $mydir
start-process grunt -ArgumentList {serve;-switch1;-switch2} -WorkingDirectory $mydir
start-process {grunt serve} -ArgumentList {-switch1;-switch2} -WorkingDirectory $mydir
start-process (grunt serve) -ArgumentList {-switch1;-switch2} -WorkingDirectory $mydir
start-process "grunt serve" -ArgumentList {-switch1;-switch2} -WorkingDirectory $mydir
我不完全确定-ArgumentList
的语法是否正确,但grunt
启动正常。
我知道,我可以做start powershell -command {grunt serve -switch1 switch2}
它会起作用,但我想避免创建另一个PowerShell会话。