use grep instead of ripgrep

This commit is contained in:
nora 2023-04-04 15:27:59 +02:00
parent 40d16d8399
commit f28fdd46a8

View file

@ -117,7 +117,7 @@ if ! cargo check ; then
exit 1
fi
OUT=$(rg -o "~MINIMIZE-ROOT [\w\-]*" --no-filename --sort path src)
OUT=$(grep -ro "~MINIMIZE-ROOT [a-zA-Z_\-]*" --no-filename src)
python3 -c "
# Get the data from bash by just substituting it in. It works!