aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2022-11-15 01:13:10 +0100
committerpacien2022-11-15 01:13:10 +0100
commitad128888c912ecde57b3e3adcf4170f13dcc9d01 (patch)
tree657125af7c382a4479c563a41a95fac4f2dda686
parent2583ea10b3b1ee87bc086a952a0fc3fe26521217 (diff)
downloadflaky-utils-ad128888c912ecde57b3e3adcf4170f13dcc9d01.tar.gz
lib/shell.fmt: reduce header spacing
-rw-r--r--lib/shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell.nix b/lib/shell.nix
index e6ba22c..e984a05 100644
--- a/lib/shell.nix
+++ b/lib/shell.nix
@@ -12,7 +12,7 @@ let
12 codeBlock = code: text: ''"\e[${code}m"${escapeShellArg text}"\e[0m"''; 12 codeBlock = code: text: ''"\e[${code}m"${escapeShellArg text}"\e[0m"'';
13 keyword = codeBlock "1;36"; 13 keyword = codeBlock "1;36";
14 section = codeBlock "4;35"; 14 section = codeBlock "4;35";
15 printSectionTitle = title: ''echo -e "\n\n"${section title}"\n"''; 15 printSectionTitle = title: ''echo -e "\n"${section title}'';
16 }; 16 };
17 17
18in rec { 18in rec {