aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2022-11-15 01:10:39 +0100
committerpacien2022-11-15 01:10:39 +0100
commit99c4f2535eb5241bfb89f81f181bfbc4d0ee3ffc (patch)
treee9836e064222d9c960667b4b34f95f3ec62e2114
parent08e98e2e632a4b9db9568799f2b36aea345dc36d (diff)
downloadflaky-utils-99c4f2535eb5241bfb89f81f181bfbc4d0ee3ffc.tar.gz
lib/shell: remove extraneous qualifiers
-rw-r--r--lib/shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell.nix b/lib/shell.nix
index d7d15fa..fd90034 100644
--- a/lib/shell.nix
+++ b/lib/shell.nix
@@ -6,7 +6,7 @@ with pkgs.lib;
6 6
7let 7let
8 mapAttrsToLines = mapping: attrs: 8 mapAttrsToLines = mapping: attrs:
9 pkgs.lib.concatStringsSep "\n" (pkgs.lib.mapAttrsToList mapping attrs); 9 concatStringsSep "\n" (mapAttrsToList mapping attrs);
10 10
11 fmt = rec { 11 fmt = rec {
12 codeBlock = code: text: ''"\e[${code}m"${text}"\e[0m"''; 12 codeBlock = code: text: ''"\e[${code}m"${text}"\e[0m"'';