1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

refactor(permissions): use less space for permissions prompt (#17708)

This commit is contained in:
Bartek Iwańczuk 2023-02-10 12:29:03 +01:00 committed by GitHub
parent b3e88e0681
commit 9ea899afa7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -199,7 +199,7 @@ impl PermissionPrompter for TtyPrompter {
// print to stderr so that if stdout is piped this is still displayed.
const OPTS: &str = "[y/n] (y = yes, allow; n = no, deny)";
eprint!("{PERMISSION_EMOJI} ");
eprint!("{PERMISSION_EMOJI} ");
eprint!("{}", colors::bold("Deno requests "));
eprint!("{}", colors::bold(message));
eprintln!("{}", colors::bold("."));