From ca93effb7d2b94e86a889ce3750c8ead111cb69a Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Sat, 26 Apr 2025 18:46:15 +0200 Subject: [PATCH] Update --user-path error message Co-authored-by: Lion --- src/Options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Options.cpp b/src/Options.cpp index 600152d..0f08a83 100644 --- a/src/Options.cpp +++ b/src/Options.cpp @@ -88,7 +88,7 @@ void InitOptions(int argc, const char *argv[], Options &options) { options.no_update = true; } else if (argument == "--user-path") { if (i + 1 >= argc) { - error("No user path specified after flag"); + error("You must specify a path after the `--user-path` argument"); } options.user_path = argv[i + 1]; i++;