Skip to content

Commit

Permalink
Fix YAML files concatenation (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
pattacini authored May 8, 2024
1 parent a5d0327 commit b41663f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def check_and_wait_until_reset
#########################################################################################
def get_entries(dirname)
files = Dir[dirname + "/*.yml"]
files << Dir[dirname + "/*.yaml"]
files = files + Dir[dirname + "/*.yaml"]

entries = {}
if files then
Expand Down

0 comments on commit b41663f

Please sign in to comment.