Fabric Remote Execution 需要用户响应提示?
Fabric Remote Execution requiring a user response from a prompt?
当结构脚本需要响应时,我想处理。
例如。 Apply the above migration? (yes|no) [no]:
创建此提示的 fab
函数:
local("php root/protected/yiic.php migrate")
尝试在 运行 命令期间禁用交互模式:
local("php root/protected/yiic.php migrate --interactive=0")
interactive: boolean,指定是否以交互方式执行迁移。默认为 true,这意味着在执行特定迁移时会提示用户。
当结构脚本需要响应时,我想处理。
例如。 Apply the above migration? (yes|no) [no]:
创建此提示的 fab
函数:
local("php root/protected/yiic.php migrate")
尝试在 运行 命令期间禁用交互模式:
local("php root/protected/yiic.php migrate --interactive=0")
interactive: boolean,指定是否以交互方式执行迁移。默认为 true,这意味着在执行特定迁移时会提示用户。