From 8a24eab47b817bd8de6d5876728c92b2b2b02b96 Mon Sep 17 00:00:00 2001 From: Mr Lightspeed <95941244+MrLightspeed@users.noreply.github.com> Date: Sun, 26 Oct 2025 19:52:06 -0400 Subject: [PATCH] docs: correct onChainCheck usage hint --- src/main/kotlin/org/ethereum/lists/tokens/OnChainCheck.kt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/ethereum/lists/tokens/OnChainCheck.kt b/src/main/kotlin/org/ethereum/lists/tokens/OnChainCheck.kt index d94b35e30..b496f5aeb 100644 --- a/src/main/kotlin/org/ethereum/lists/tokens/OnChainCheck.kt +++ b/src/main/kotlin/org/ethereum/lists/tokens/OnChainCheck.kt @@ -6,7 +6,10 @@ import kotlin.system.exitProcess suspend fun main(args: Array) { if (args.isEmpty()) { - error("fileToCheck not specified :-)\nPlease execute like this: ./gradlew -PfileToCheckh=/path/you/want/to/import") + error( + "fileToCheck not specified :-)\n" + + "Please execute like this: ./gradlew onChainCheck -PfileToCheck=tokens//
.json" + ) } val fileToCheck = File(args[0]) @@ -29,4 +32,4 @@ suspend fun main(args: Array) { private fun error(message: String) { println("Error: $message") exitProcess(1) -} \ No newline at end of file +}