Skip to content

Commit

Permalink
Silence Ruby warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
anishathalye committed Aug 26, 2023
1 parent 8e25468 commit 2fef850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tries="${INPUT_RETRIES:-3}"

while [ "$tries" -ge 1 ]; do
tries=$((tries-1))
if ruby /proof-html.rb; then
if RUBYOPT="-W0" ruby /proof-html.rb; then
break
fi
if [ "$tries" -ge 1 ]; then
Expand Down

0 comments on commit 2fef850

Please sign in to comment.