From a3006cc5e104465decea1e61483c68a9c855b7ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Fri, 21 Feb 2025 09:32:46 +0100 Subject: [PATCH] project: fix typo preventing overriding version manifest file --- lib/omnibus/project.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/omnibus/project.rb b/lib/omnibus/project.rb index 577b6802b..f5a19b6c8 100644 --- a/lib/omnibus/project.rb +++ b/lib/omnibus/project.rb @@ -1011,7 +1011,7 @@ def json_manifest_path(path = NULL) # def text_manifest_path(path = NULL) if null?(path) - @test_manifest_path || File.join(install_dir, "version-manifest.txt") + @text_manifest_path || File.join(install_dir, "version-manifest.txt") else @text_manifest_path = path end