Skip to content

Commit

Permalink
Update markdown validation script
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronjae22 committed Mar 22, 2024
1 parent 8586ff0 commit 8d57573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sanity_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ echo "Loading the Markdown files that have changed"
for x in $(git diff --name-only HEAD origin/main -- "articles/*.md")
do
is_valid_md=$(python validate_markdown_metadata.py $x)
if [[ $is_valid_md == "True"]]; then
if [[ $is_valid_md == "True" ]]; then
echo "Validating file $x"
else
echo "File $x failed"
Expand Down

0 comments on commit 8d57573

Please sign in to comment.