fix(solc): follow symlinks in source files (#1277)

This commit is contained in:
Matthias Seitz 2022-05-17 19:26:51 +02:00 committed by GitHub
parent 1271308e06
commit 4047613259
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -75,6 +75,8 @@ pub fn find_version_pragma(contract: &str) -> Option<Match> {
/// Returns a list of absolute paths to all the solidity files under the root, or the file itself,
/// if the path is a solidity file.
///
/// This also follows symlinks.
///
/// NOTE: this does not resolve imports from other locations
///
/// # Example
@ -85,6 +87,7 @@ pub fn find_version_pragma(contract: &str) -> Option<Match> {
/// ```
pub fn source_files(root: impl AsRef<Path>) -> Vec<PathBuf> {
WalkDir::new(root)
.follow_links(true)
.into_iter()
.filter_map(Result::ok)
.filter(|e| e.file_type().is_file())