From 181e8b10367ec90872acabe5938cc980d14648d7 Mon Sep 17 00:00:00 2001 From: npty <78221556+npty@users.noreply.github.com> Date: Mon, 9 Dec 2024 17:51:06 +0700 Subject: [PATCH] chore(sui): add more help text when sui version mismatch (#460) --- sui/utils/utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/sui/utils/utils.js b/sui/utils/utils.js index d452107e..ad755a85 100644 --- a/sui/utils/utils.js +++ b/sui/utils/utils.js @@ -85,6 +85,7 @@ const checkSuiVersionMatch = () => { printWarn('Version mismatch detected:'); printWarn(`- Installed SUI version: ${installedVersion}`); printWarn(`- Version used for tests: ${definedVersion}`); + printWarn(`Please download the correct version (${definedVersion}) from https://github.com/MystenLabs/sui/releases`); } };