Skip to content

Commit

Permalink
just: match both yaml and yml
Browse files Browse the repository at this point in the history
This fixes a little papercut I ran into when working with the `.custom`
directory, where I wondered why my files weren't included. Turned out we
only match against `.yml` while I used `.yaml`. This makes it so both
endings are valid and included.
  • Loading branch information
msanft committed Jan 14, 2025
1 parent 1d383aa commit 0d210ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ generate cli=default_cli platform=default_platform:
--workspace-dir ./{{ workspace_dir }} \
--image-replacements ./{{ workspace_dir }}/just.containerlookup \
--reference-values {{ platform }}\
./{{ workspace_dir }}/deployment/*.yml
./{{ workspace_dir }}/deployment/*.{yml,yaml}
# On baremetal SNP, we don't have default values for MinimumTCB, so we need to set some here.
case {{ platform }} in
Expand Down Expand Up @@ -251,7 +251,7 @@ set cli=default_cli:
--workspace-dir ./{{ workspace_dir }} \
-c localhost:1313 \
--coordinator-policy-hash "${policy}" \
./{{ workspace_dir }}/deployment/*.yml
./{{ workspace_dir }}/deployment/*.{yml,yaml}
# Verify the Coordinator.
verify cli=default_cli:
Expand Down

0 comments on commit 0d210ec

Please sign in to comment.