Skip to content

Commit

Permalink
fix(solc): follow symlinks in source files (gakonst#1277)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored May 17, 2022
1 parent 1271308 commit 4047613
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ethers-solc/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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())
Expand Down

0 comments on commit 4047613

Please sign in to comment.