From d4bbb4d2c493cb4a4407655e1dd063227ff53e88 Mon Sep 17 00:00:00 2001 From: Sonu Saha <98935583+ahasunos@users.noreply.github.com> Date: Wed, 25 Oct 2023 18:57:09 +0530 Subject: [PATCH] CHORE: Fix lint offense, TrailingWhitespace & EmptyLines (#6830) Signed-off-by: Sonu Saha --- omnibus_overrides.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/omnibus_overrides.rb b/omnibus_overrides.rb index 4edc53aaf..ea5e55bbe 100644 --- a/omnibus_overrides.rb +++ b/omnibus_overrides.rb @@ -5,12 +5,11 @@ train_stable = /^train \((.*)\)/.match(`gem list ^train$ --remote`)[1] override "train", version: "v#{train_stable}" override "ruby", version: "3.1.2" - # Mac Apple Silicon requires 1.1.1 series instead of 1.0.2 series if mac_os_x? override "openssl", version: "1.1.1w" else - # Hopefully temporary, in October 2023 the default is 1.0.2zg which + # Hopefully temporary, in October 2023 the default is 1.0.2zg which # has an open high cve, while zi is available. Temporarily pin until # default in omnibus-software has no cves. override "openssl", version: "1.0.2zi"