diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-01 15:10:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-01 15:10:09 +0200 |
commit | 58be2887f7a4e20fa9f4153a6d46c272a46cbe39 (patch) | |
tree | f645721a91621a27f2adee6655b9ee242b73367e /main/main.cpp | |
parent | 719609522a30fa9e3b96b028ac5a1d1a65f1678f (diff) | |
parent | b0e817730644afdbf111f57017c51797c8da2644 (diff) |
Merge pull request #36885 from Xrayez/doctool-err-msg
Fix doctool misleading error message
Diffstat (limited to 'main/main.cpp')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 0cccccdab3..79c8fe532d 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1620,7 +1620,7 @@ bool Main::start() { { DirAccessRef da = DirAccess::open(doc_tool); - ERR_FAIL_COND_V_MSG(!da, false, "Argument supplied to --doctool must be a base Godot build directory."); + ERR_FAIL_COND_V_MSG(!da, false, "Argument supplied to --doctool must be a valid directory path."); } #ifndef MODULE_MONO_ENABLED |