[bootstrap] remove brew from apt package installations (#8399)

This commit chages incorrect pkg manager tool used in
`install_packages_pretty_format` from brew to apt-get.
This commit is contained in:
canisLupus1313
2022-11-17 08:52:22 -08:00
committed by GitHub
parent 4a7c447f6c
commit 593c2b0a8d
+2 -2
View File
@@ -46,8 +46,8 @@ install_packages_pretty_format()
# add mdv for local size report
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.'
# add shfmt for shell pretty
command -v shfmt || sudo apt-get install shfmt || echo 'WARNING: could not install shfmt, which is useful if you plan to contribute shell scripts to the OpenThread project.'
}
install_packages_apt()