We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We rely on git ls-files to get the list of files to check, but some of the files could be removed after being added to git, this should be handled.
git ls-files
touch doc.md
git add doc.md
rm doc.md
xrefcheck
This results in xrefcheck run failing.
All tracked md files except for doc.md are checked.
md
doc.md
I suppose we should treat doc.md as if it never existed, but it's discussible.
master
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
We rely on
git ls-files
to get the list of files to check, but some of the files could be removed after being added to git, this should be handled.To Reproduce
touch doc.md
git add doc.md
rm doc.md
xrefcheck
This results in
xrefcheck
run failing.Expected behavior
All tracked
md
files except fordoc.md
are checked.I suppose we should treat
doc.md
as if it never existed, but it's discussible.Environment
master
(50e4e3b)The text was updated successfully, but these errors were encountered: