embark-ai 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tui.js +4 -4
package/package.json
CHANGED
package/tui.js
CHANGED
|
@@ -406,7 +406,7 @@ function renderActions() {
|
|
|
406
406
|
`{cyan-fg}q{/} quit`,
|
|
407
407
|
``,
|
|
408
408
|
`{gray-fg}Logs in:{/}`,
|
|
409
|
-
`{gray-fg}${LOG_DIR
|
|
409
|
+
`{gray-fg}${LOG_DIR}{/}`,
|
|
410
410
|
]
|
|
411
411
|
actionsPanel.setContent(lines.join('\n'))
|
|
412
412
|
}
|
|
@@ -711,8 +711,8 @@ async function runOnboarding() {
|
|
|
711
711
|
if (!fs.existsSync(jarPath)) {
|
|
712
712
|
await modalCommand(
|
|
713
713
|
`Step 3 of 3 — Minecraft Server (Java Edition ${MC_VERSION})`,
|
|
714
|
-
`server.jar not found at
|
|
715
|
-
|
|
714
|
+
`server.jar not found. Place it at:`,
|
|
715
|
+
`${path.join(SERVER_DIR, SERVER_JAR)}`,
|
|
716
716
|
`Download Minecraft Java Edition ${MC_VERSION} server jar\n` +
|
|
717
717
|
`from minecraft.net > Download > Minecraft Server\n` +
|
|
718
718
|
`and place it at the path above.\n\n` +
|
|
@@ -746,7 +746,7 @@ async function actStartServer() {
|
|
|
746
746
|
const jarPath = path.join(SERVER_DIR, SERVER_JAR)
|
|
747
747
|
if (!fs.existsSync(jarPath)) {
|
|
748
748
|
return modalMessage(
|
|
749
|
-
`{red-fg}server.jar not found at
|
|
749
|
+
`{red-fg}server.jar not found at:{/}\n${path.join(SERVER_DIR, SERVER_JAR)}\n` +
|
|
750
750
|
`Run setup again with {cyan-fg}[8]{/} for download instructions.`,
|
|
751
751
|
'red'
|
|
752
752
|
)
|