Skip to content

Commit

Permalink
update baselines
Browse files Browse the repository at this point in the history
  • Loading branch information
wandmagic committed Jan 17, 2025
1 parent 863a22f commit b176d44
Show file tree
Hide file tree
Showing 3 changed files with 416 additions and 416 deletions.
6 changes: 3 additions & 3 deletions src/content/module.mk
Original file line number Diff line number Diff line change
Expand Up @@ -98,21 +98,21 @@ test-dist-content:
validation_failed=0; \
for file in $(YAML_FILES); do \
echo "Validating $$file..."; \
if ! $(OSCAL_CLI) validate -f -s "$$file"; then \
if ! $(OSCAL_CLI) validate -s -f "$$file"; then \
echo "Error: Validation failed for YAML file: $$file"; \
validation_failed=1; \
fi; \
done; \
for file in $(JSON_FILES); do \
echo "Validating $$file..."; \
if ! $(OSCAL_CLI) validate -f -s "$$file"; then \
if ! $(OSCAL_CLI) validate -s -f "$$file"; then \
echo "Error: Validation failed for JSON file: $$file"; \
validation_failed=1; \
fi; \
done; \
for file in $(XML_FILES); do \
echo "Validating $$file..."; \
if ! $(OSCAL_CLI) validate -f -s "$$file"; then \
if ! $(OSCAL_CLI) validate -s -f "$$file"; then \
echo "Error: Validation failed for XML file: $$file"; \
validation_failed=1; \
fi; \
Expand Down
Loading

0 comments on commit b176d44

Please sign in to comment.