命令行如下:
CocosCreator --path xxx --build platform=fb-instant-games; debug = false;
实际运行时,第一个参数设置有效,debug参数设置无效。
CocosCreator --path xxx --build “platform=fb-instant-games; debug = false;”
改成如上也没效果。
所以多个参数的时候,到底该怎么写
命令行如下:
CocosCreator --path xxx --build platform=fb-instant-games; debug = false;
实际运行时,第一个参数设置有效,debug参数设置无效。
CocosCreator --path xxx --build “platform=fb-instant-games; debug = false;”
改成如上也没效果。
所以多个参数的时候,到底该怎么写
有没有哪个大神指教一下
2.0.8 构建web-mobile测试有效! 你构建下web试试,确认OK的。
多个参数的方式 是按上面的方式写么
Mac下是这样,差不多
/Applications/CocosCreator.app/Contents/MacOS/CocosCreator --path $(pwd) --build “platform=web-mobile;debug=false”
debug前面有空格,干掉试试
谢了。差不多就是这个问题了。参数之间不能有空格,试了老半天。