Skip to content

Commit e60d417

Browse files
authored
Merge pull request #330 from online-judge-tools/fix-acl
Fix to use AtCoder Library
2 parents eb01179 + 8896bda commit e60d417

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

onlinejudge_verify/documentation/configure.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ def _build_dependency_graph(paths: List[pathlib.Path], *, basedir: pathlib.Path)
7878
relative_dst = absolute_dst.relative_to(basedir)
7979
if absolute_src == absolute_dst:
8080
continue
81+
if absolute_dst not in depends_on:
82+
logger.debug("The file `%s` which is depended from `%s` is ignored because it's not listed as a source code file.", relative_dst, relative_src)
83+
continue
8184

8285
depends_on[absolute_src].append(relative_dst)
8386
if utils.is_verification_file(src, basedir=basedir):

0 commit comments

Comments
 (0)