Skip to content

Commit

Permalink
Fixing exit prompt formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanml authored and mxcl committed Aug 16, 2023
1 parent 141f8e4 commit 080e540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export async function repl(installations: Installation[], env: Record<string, st
// python etc. have the same behavior
console.error('this is a temporary shell containing the following packages:')
console.error(pkgs_str())
console.error("when done type: `exit'")
console.error("when done type: `exit`")

const shell = SHELL?.trim() || "/bin/sh"
const cmd = [shell, '-i'] // interactive
Expand Down

0 comments on commit 080e540

Please sign in to comment.