debug: show cdImages count in CD-only config
Build & Deploy / build-and-deploy (push) Successful in 50s

This commit is contained in:
Hermes Agent
2026-06-03 12:20:19 +02:00
parent 632fd7f554
commit 1fc0a11512
@@ -599,6 +599,11 @@ public class UploadResource {
// Present a DOS prompt — the game runs from the CD // Present a DOS prompt — the game runs from the CD
sb.append("c:\n"); sb.append("c:\n");
sb.append("echo.\n"); sb.append("echo.\n");
sb.append("echo [debug] cdImages found: ").append(cdImages.size()).append("\n");
for (String img : cdImages) {
sb.append("echo - ").append(img).append("\n");
}
sb.append("echo.\n");
sb.append("echo This game runs from the CD-ROM.\n"); sb.append("echo This game runs from the CD-ROM.\n");
sb.append("echo Type D: and press Enter, then look for the game executable (e.g. DOTT.EXE).\n"); sb.append("echo Type D: and press Enter, then look for the game executable (e.g. DOTT.EXE).\n");
return sb.toString(); return sb.toString();