您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

20 行
406 B

engine_path=$(pwd)
runtime_mode=release
while getopts ":r:m:" opt
do
case $opt in
r)
engine_path=$OPTARG # set engine_path, depot_tools and flutter engine folder will be put into this path
;;
m)
runtime_mode=$OPTARG
;;
?)
echo "unknown param"
exit 1;;
esac
done
python3 lib_build.py -r $engine_path -p mac -m $runtime_mode