Skip to content

Commit

Permalink
Use emoji.
Browse files Browse the repository at this point in the history
  • Loading branch information
ry authored and piscisaureus committed Oct 26, 2018
1 parent 4656739 commit 9bd3275
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/permissions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl DenoPermissions {
};
// TODO get location (where access occurred)
let r = permission_prompt(format!(
"Deno requests write access to \"{}\".",
"🔐 Deno requests write access to \"{}\".",
filename
));;
if r.is_ok() {
Expand All @@ -43,7 +43,7 @@ impl DenoPermissions {
};
// TODO get location (where access occurred)
let r = permission_prompt(format!(
"Deno requests network access to \"{}\".",
"🔐 Deno requests network access to \"{}\".",
domain_name
));
if r.is_ok() {
Expand All @@ -58,7 +58,7 @@ impl DenoPermissions {
};
// TODO get location (where access occurred)
let r = permission_prompt(
"Deno requests access to environment variables.".to_string(),
"🔐 Deno requests access to environment variables.".to_string(),
);
if r.is_ok() {
self.allow_env = true;
Expand Down

0 comments on commit 9bd3275

Please sign in to comment.