Commit ccf1057a authored by refcell.eth's avatar refcell.eth Committed by GitHub

fix(ops): fix todo checker case sensitivity (#9024)

parent 40d3f4ff
...@@ -50,7 +50,7 @@ for arg in "$@"; do ...@@ -50,7 +50,7 @@ for arg in "$@"; do
done done
# Use ripgrep to search for the pattern in all files within the repo # Use ripgrep to search for the pattern in all files within the repo
todos=$(rg -o --with-filename -n -g '!ops/scripts/todo-checker.sh' 'TODO\(([^)]+)\): [^,;]*') todos=$(rg -o --with-filename -i -n -g '!ops/scripts/todo-checker.sh' 'TODO\(([^)]+)\): [^,;]*')
# Check each TODO comment in the repo # Check each TODO comment in the repo
IFS=$'\n' # Set Internal Field Separator to newline for iteration IFS=$'\n' # Set Internal Field Separator to newline for iteration
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment