Skip to content

Commit 88138af

Browse files
committed
Treat missing source dir as warning in validate
1 parent 5074f24 commit 88138af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

concore_cli/commands/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def finalize():
7171
info.append(f"Found {len(edges)} edge(s)")
7272

7373
if not source_root.exists():
74-
errors.append(f"Source directory not found: {source_root}")
74+
warnings.append(f"Source directory not found: {source_root}")
7575

7676
node_labels = []
7777
for node in nodes:

0 commit comments

Comments
 (0)