From 1c0d295a043fa94d8769d72a9d0d0cf22f70c56c Mon Sep 17 00:00:00 2001 From: Li Cao Date: Thu, 21 Jan 2021 06:12:00 +0800 Subject: [PATCH] [script] fix warning string for mdv (#6096) mdv is only used to post size report and can not format markdown. Update the warning string to avoid confusion. --- script/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bootstrap b/script/bootstrap index f4843c233..1fcd8324e 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -44,7 +44,7 @@ install_packages_pretty_format() python3 -m pip install yapf==0.29.0 || echo 'WARNING: could not install yapf, which is useful if you plan to contribute python code to the OpenThread project.' # add mdv for local size report - python3 -m pip install mdv || echo 'WARNING: could not install mdv, which is useful if you plan to contribute markdown to the OpenThread project.' + python3 -m pip install mdv || echo 'WARNING: could not install mdv, which is required to post markdown size report for OpenThread.' # add shfmt for shell pretty, try brew only because snap does not support home directory not being /home and doesn't work in docker. command -v shfmt || brew install shfmt || echo 'WARNING: could not install shfmt, which is useful if you plan to contribute shell scripts to the OpenThread project.'