Skip to content

Commit

Permalink
fix paths in checktodos.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tabareau committed Jan 16, 2023
1 parent 0d7b23d commit 7196e19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions checktodos.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

if [[ $(git grep -c todo | grep theories) = template-coq/theories/utils/MCUtils.v:3 ]]
if [[ $(git grep -c todo | grep theories) = utils/theories/MCUtils.v:3 ]]
then
echo "No todos found"
if [[ $(git grep -c Admitted | grep theories) = "" ]]
Expand All @@ -14,7 +14,7 @@ then
fi
else
echo "Found todos:"
git grep -c todo | grep theories | grep -v "template-coq/theories/utils/MCUtils.v:3"
git grep -c todo | grep theories | grep -v "utils/theories/MCUtils.v:3"
exit 1
fi
endef
Expand Down

0 comments on commit 7196e19

Please sign in to comment.