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
If directories specified as multi line then string for directories will contain spaces in the begining, this leads to failure example:
dirs: "., ./docs, ./scripts"
will lead to ./ ./docs using absolute path also does not help and docs will be converted into ./ docs
./ ./docs
docs
./ docs
linksafe/src/scan_file.py
Lines 47 to 48 in 7c7b45b
Solution, add directory=directory.strip()
directory=directory.strip()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If directories specified as multi line then string for directories will contain spaces in the begining, this leads to failure
example:
will lead to
./ ./docs
using absolute path also does not help anddocs
will be converted into./ docs
linksafe/src/scan_file.py
Lines 47 to 48 in 7c7b45b
Solution, add
directory=directory.strip()
The text was updated successfully, but these errors were encountered: