From df866c440f2dc2481a6a92441349dad90e0f4f69 Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Mon, 30 Oct 2023 11:30:59 -0400 Subject: [PATCH] Yield Pathnames for embedded_workflows_content --- lib/vmdb/plugins.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vmdb/plugins.rb b/lib/vmdb/plugins.rb index 39cf6068450..b10a7c76914 100644 --- a/lib/vmdb/plugins.rb +++ b/lib/vmdb/plugins.rb @@ -74,7 +74,7 @@ def ansible_runner_content def embedded_workflows_content @embedded_workflows_content ||= begin flat_map do |engine| - Dir.glob(engine.root.join("content", "workflows", "**", "*.asl")) + engine.root.join("content", "workflows").glob("**/*.asl") end end end