forked from kimhyungsik/ax_hub_mcp_tool
Fix Dockerfile paths and add main to ValidationRunner
Some checks failed
Deploy Tools / deploy (push) Failing after 34s
Some checks failed
Deploy Tools / deploy (push) Failing after 34s
This commit is contained in:
@@ -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]));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user