diff --git a/src/tasks/stdio/prompt.ts b/src/tasks/stdio/prompt.ts index eb55f82..1686d71 100644 --- a/src/tasks/stdio/prompt.ts +++ b/src/tasks/stdio/prompt.ts @@ -81,7 +81,12 @@ export function prompt(options: PromptOptions | Empty, task: Task): Task.Async { let response: null | string = null; while (!(await isCancelled(ctx))) { response = await line( - addPrefix(opts.message + ' ', null, 'print', ctx), + addPrefix( + getBadge('prompt') + ' ' + opts.message + ' ', + null, + 'print', + ctx + ), opts.timeout, ctx ).then((res) => {