Fix Dockerfile paths and add main to ValidationRunner
Some checks failed
Deploy Tools / deploy (push) Failing after 34s

This commit is contained in:
윤희준
2026-08-28 16:10:45 +09:00
parent 3498dbb388
commit 0921e6d85d
5 changed files with 11 additions and 4 deletions

View File

@@ -11,4 +11,11 @@ public final class McpToolNameValidationRunner {
static void validate(Path projectRoot) {
McpToolNameValidator.assertUnique(projectRoot);
}
public static void main(String[] args) {
if (args.length == 0) {
throw new IllegalArgumentException("Project root path must be provided");
}
validate(Path.of(args[0]));
}
}