Skip to content

Commit

Permalink
Use correct braces in smart-proxy-plugin script
Browse files Browse the repository at this point in the history
These are variables that are replaced in Jenkins templating, not bash.

Fixes: f164a3f ("Use bundler 2.4.22 in ruby 2.7 environments")
  • Loading branch information
ekohl authored and evgeni committed Jan 12, 2024
1 parent 588af6b commit 33e789c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theforeman.org/yaml/builders/smart-proxy-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
rvm gemset empty --force
set -x
if [ "${{ruby}}" = '2.7' ]
if [ "${ruby}" = '2.7' ]
then
gem install bundler -v 2.4.22 --no-document
else
Expand Down

0 comments on commit 33e789c

Please sign in to comment.