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
check-manifest path
mkdir /tmp/x
touch /tmp/x/setup.py
cd /tmp
check-manifest x
What I expect:
cd x && check-manifest
What actually happens:
Curiously, this error does not happen if I mkdir /tmp/y && cd /tmp/y && check-manifest ../x.
mkdir /tmp/y && cd /tmp/y && check-manifest ../x
The text was updated successfully, but these errors were encountered:
Fix check-manifest relative/pathname (#28)
e87621a
This was a really silly bug: I tried to resolve the relative pathname a second time, after chdir()'ing to it.
Fixed in 0.20.
Sorry, something went wrong.
No branches or pull requests
mkdir /tmp/x
touch /tmp/x/setup.py
cd /tmp
check-manifest x
What I expect:
cd x && check-manifest
, i.e. an error that it couldn't find version control dataWhat actually happens:
Curiously, this error does not happen if I
mkdir /tmp/y && cd /tmp/y && check-manifest ../x
.The text was updated successfully, but these errors were encountered: