Skip to content

Commit

Permalink
tweak: change phoenix help text when launched with -c
Browse files Browse the repository at this point in the history
  • Loading branch information
KernelDeimos committed Sep 30, 2024
1 parent 5ed8823 commit 8bc4122
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/phoenix/src/puter-shell/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,10 @@ export const launchPuterShell = async (ctx) => {

ctx.externs.out.write(
`${fire('Phoenix Shell')} [v${SHELL_VERSIONS[0].v}]\n` +
`⛷ try typing \x1B[34;1mhelp\x1B[0m or ` +
`\x1B[34;1mchangelog\x1B[0m to get started.\n` +
(! ctx.init_arguments.c ?
`⛷ try typing \x1B[34;1mhelp\x1B[0m or ` +
`\x1B[34;1mchangelog\x1B[0m to get started.\n`
: `'-c' was passed; running: \x1B[36;1m${ctx.init_arguments.c}\x1B[0m\n`) +
// '\n' +
// `🔗 ${mklink('https://puter.com', 'puter.com')} ` +
''
Expand Down

0 comments on commit 8bc4122

Please sign in to comment.