diff options
| author | ยท๐๐ด๐๐๐ฉ๐ค | 2025-12-10 13:00:27 +0000 |
|---|---|---|
| committer | ยท๐๐ด๐๐๐ฉ๐ค | 2025-12-10 13:00:27 +0000 |
| commit | acdb21f94d642417bef845041122a168ff64c4a5 (patch) | |
| tree | 84804dd9b1a7746dce41c056cdc538e381d3f60c /lib/manifest.ml | |
| parent | 6c275ab6cfcbcbdbf99dae089d390b8be0498fbf (diff) | |
| download | nixtaml-acdb21f94d642417bef845041122a168ff64c4a5.tar nixtaml-acdb21f94d642417bef845041122a168ff64c4a5.tar.gz nixtaml-acdb21f94d642417bef845041122a168ff64c4a5.tar.bz2 nixtaml-acdb21f94d642417bef845041122a168ff64c4a5.tar.lz nixtaml-acdb21f94d642417bef845041122a168ff64c4a5.tar.xz nixtaml-acdb21f94d642417bef845041122a168ff64c4a5.tar.zst nixtaml-acdb21f94d642417bef845041122a168ff64c4a5.zip | |
add banners! โง
Diffstat (limited to 'lib/manifest.ml')
| -rw-r--r-- | lib/manifest.ml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/manifest.ml b/lib/manifest.ml index 2583e74..b79ebb9 100644 --- a/lib/manifest.ml +++ b/lib/manifest.ml @@ -711,6 +711,13 @@ let write () : (unit, error) result = Logs.app (fun m -> m "Writing manifest @@ %s โฆ" filename); let result = Eio.Path.with_open_out ~create: (`Exclusive 0o644) filepath @@ fun flow -> + let banner = [ + Cstruct.of_string "// โโโป+โป โฑโโณโโโโโณโโโโป\n"; + Cstruct.of_string "// โโโโโโโโนโโนโฃโซโโโโฃโซโ Read the manpage:\n"; + Cstruct.of_string "// โนโโโนโฑ โน โน โนโนโน โนโนโนโโ $ man nixtamal-manifest\n"; + ] + in + Eio.Flow.write flow banner; Util.KDL.to_flow flow mnfst; Eio.Flow.write flow ([Cstruct.of_string "\n"]) in |
