Skip to content

Commit f0bf49a

Browse files
committed
These commands are equivalent:
dbt-jobs-as-code plan path/to/jobs/*.yml dbt-jobs-as-code plan path/to/jobs
1 parent 9e521f4 commit f0bf49a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dbt_jobs_as_code/cloud_yaml_mapping/change_set.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def build_change_set(
189189
"""
190190
# Get list of files matching the glob pattern
191191
if os.path.isdir(config):
192-
config = os.path.join(config, "**/*.yml")
192+
config = os.path.join(config, "*.yml")
193193
config_files = glob.glob(config)
194194
if not config_files:
195195
logger.error(f"No files found matching pattern: {config}")

0 commit comments

Comments
 (0)