소스 검색

Merge pull request #36885 from Xrayez/doctool-err-msg

Fix doctool misleading error message
Rémi Verschelde 5 년 전
부모
커밋
58be2887f7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      main/main.cpp

+ 1 - 1
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