diff options
author | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2020-03-07 16:40:59 +0200 |
---|---|---|
committer | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2020-03-07 16:40:59 +0200 |
commit | b0e817730644afdbf111f57017c51797c8da2644 (patch) | |
tree | 7bc02b8740936a087415189ca0661269dcd7c70a /main | |
parent | 54fa07e7f01b21bc69309172b439bc05db571977 (diff) |
Fix doctool misleading error message
Diffstat (limited to 'main')
-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 d8a9cc87a7..9fbef718fa 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1509,7 +1509,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."); } DocData doc; doc.generate(doc_base); |