[ubuntu] Don't install documentation for ruby gems (#11413)

This commit is contained in:
Fahrzin Hemmati
2025-02-06 08:21:43 -08:00
committed by GitHub
parent 7454a5b88a
commit 2578e48fe6

View File

@@ -20,7 +20,7 @@ gems_to_install=$(get_toolset_value ".rubygems[] .name")
if [[ -n "$gems_to_install" ]]; then
for gem in $gems_to_install; do
echo "Installing gem $gem"
gem install $gem
gem install --no-document $gem
done
fi