You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suggest --headless CLI argument in DisplayServer not found error message
This is helpful for newcomers setting up Godot on CI, as this provides
automatic guidance as for why it doesn't run out of the box if
there's no X11 server available.
Copy file name to clipboardExpand all lines: main/main.cpp
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2463,7 +2463,7 @@ Error Main::setup2() {
2463
2463
}
2464
2464
2465
2465
if (err != OK || display_server == nullptr) {
2466
-
ERR_PRINT("Unable to create DisplayServer, all display drivers failed.");
2466
+
ERR_PRINT("Unable to create DisplayServer, all display drivers failed.\nUse \"--headless\" command line argument to run the engine in headless mode if this is desired (e.g. for continuous integration).");
0 commit comments