提交 935d1f97 编写于 作者: S storypku 提交者: Xiangquan Xiao

Bazel: apollo6.sh config --noninteractive by default

上级 e29cc323
......@@ -45,13 +45,13 @@ function config_interactive() {
function config() {
local stage="${STAGE}"
if [ $# -eq 0 ]; then
config_interactive
config_noninteractive
else
local mode="$1" ; shift
if [[ "${mode}" == "--noninteractive" ]]; then
config_noninteractive "$@"
if [[ "${mode}" == "--interactive" || "${mode}" == "-i" ]]; then
config_interactive "$@"
else
config_interactive
config_noninteractive
fi
fi
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册