Learn more about cloning repositories
You have read-only access
[Packaging] Fix fallback value code in Ruby We should use "||" for this case. "or" has lower priority in Ruby. a = b or c means (a = b) or c not a = (b or c)