From 9132f6b8351cdd53dfed7771ac3ef53717c90c6c Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Sun, 23 Nov 2025 18:57:32 +0100 Subject: [PATCH] Fix path to saas. --- lib/fizzy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fizzy.rb b/lib/fizzy.rb index 616f5bef1..69b3f9c6f 100644 --- a/lib/fizzy.rb +++ b/lib/fizzy.rb @@ -2,7 +2,7 @@ module Fizzy class << self def saas? return @saas if defined?(@saas) - @saas = !!(ENV["SAAS"] || File.exist?(File.expand_path("../../tmp/saas.txt", __dir__))) + @saas = !!(ENV["SAAS"] || File.exist?(File.expand_path("../tmp/saas.txt", __dir__))) end def db_adapter