Skip to content

Commit

Permalink
Merge pull request #1586 from Alizter/fix-generate-coqproject
Browse files Browse the repository at this point in the history
fix generate_coqproject.sh
  • Loading branch information
Alizter authored Oct 20, 2021
2 parents d2a4c7d + 6a68730 commit 27e93b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/generate_coqproject.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ if [ -e .git ]; then
TRACKED_V_FILES="$(git ls-files "*.v")"
else
echo "Warning: Not a git clone, using find instead" >&2
TRACKED_V_FILES="$(find theories/ contrib/ -type f -name "*.v")"
TRACKED_V_FILES="$(find theories contrib -type f -name "*.v")"
fi

## List untracked .v files
Expand Down

0 comments on commit 27e93b2

Please sign in to comment.