我在Makefile中有一些代码如下所示。
ifeq ($(COMPARISON_NODE_VERSION),-1)
$(warning Please update your nodejs version to $(ENV_NODE_VERSION), or it may cause unexpected error later.)
endif
有没有机会改变msg的颜色,比如黄色?
答案 0 :(得分:2)
Make不能这样做,但如果你愿意,可以自己动手,方法是将颜色代码序列嵌入到消息文本中。虽然在makefile中查看可能有点粗略(你必须使用实际的代码:make doesn不做任何字符代码的翻译)。