summary refs log tree commit diff
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2021-01-01 20:04:28 -0800
committerBernardo Meurer <bernardo@meurer.org>2021-01-01 20:04:28 -0800
commite4cd9a8f043cb6f10f56da4bc08896cd22b0a10f (patch)
tree83a1678264c33ee8b6a99d95bdbe124188cae0a0
parent88632b78010a8807b3d4200a29ac1c0248eabd31 (diff)
downloadnixpkgs-e4cd9a8f043cb6f10f56da4bc08896cd22b0a10f.tar
nixpkgs-e4cd9a8f043cb6f10f56da4bc08896cd22b0a10f.tar.gz
nixpkgs-e4cd9a8f043cb6f10f56da4bc08896cd22b0a10f.tar.bz2
nixpkgs-e4cd9a8f043cb6f10f56da4bc08896cd22b0a10f.tar.lz
nixpkgs-e4cd9a8f043cb6f10f56da4bc08896cd22b0a10f.tar.xz
nixpkgs-e4cd9a8f043cb6f10f56da4bc08896cd22b0a10f.tar.zst
nixpkgs-e4cd9a8f043cb6f10f56da4bc08896cd22b0a10f.zip
nixos/command-not-found: don't use fancy quotes
-rw-r--r--nixos/modules/programs/command-not-found/command-not-found.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/programs/command-not-found/command-not-found.pl b/nixos/modules/programs/command-not-found/command-not-found.pl
index a48c077f53a..63c4925d433 100644
--- a/nixos/modules/programs/command-not-found/command-not-found.pl
+++ b/nixos/modules/programs/command-not-found/command-not-found.pl
@@ -27,8 +27,8 @@ if (!defined $res || scalar @$res == 0) {
     my $package = @$res[0]->{package};
     if ($ENV{"NIX_AUTO_INSTALL"} // "") {
         print STDERR <<EOF;
-The program ‘$program’ is currently not installed. It is provided by
-the package ‘$package’, which I will now install for you.
+The program '$program' is currently not installed. It is provided by
+the package '$package', which I will now install for you.
 EOF
         ;
         exit 126 if system("nix-env", "-iA", "nixos.$package") == 0;
@@ -36,14 +36,14 @@ EOF
         exec("nix-shell", "-p", $package, "--run", shell_quote("exec", @ARGV));
     } else {
         print STDERR <<EOF;
-The program ‘$program’ is not in your PATH. You can make it available in a
+The program '$program' is not in your PATH. You can make it available in a
 ephemeral shell by typing:
   nix-shell -p $package
 EOF
     }
 } else {
     print STDERR <<EOF;
-The program ‘$program’ is not in your PATH. It is provided by several packages.
+The program '$program' is not in your PATH. It is provided by several packages.
 You can make it available in a ephemeral shell by typing one of the following:
 EOF
     print STDERR "  nix-shell -p $_->{package}\n" foreach @$res;