[Ubuntu] Force ruby gem to check gems (#9022)

* [Ubuntu] Force ruby gem to check gems

* High to Medium Security for unsigned gems
This commit is contained in:
Erik Bershel
2023-12-19 12:14:39 +01:00
committed by GitHub
parent 50f736491f
commit 1f11cd7e17

View File

@@ -14,7 +14,7 @@ gemsToInstall=$(get_toolset_value ".rubygems[] .name")
if [ -n "$gemsToInstall" ]; then if [ -n "$gemsToInstall" ]; then
for gem in $gemsToInstall; do for gem in $gemsToInstall; do
echo "Installing gem $gem" echo "Installing gem $gem"
gem install $gem gem install $gem -P MediumSecurity
done done
fi fi