Files
nix/doc/manual/source/meson.build
Sergei Zimmerman 385e2c3542 meson: Apply formatting universally
Now that we have applied the [1] patch, the diff is much
nicer and less noisy.

[1]: https://www.github.com/mesonbuild/meson/pull/14861
2025-08-07 02:58:29 +03:00

19 lines
315 B
Meson

summary_rl_next = custom_target(
command : [
bash,
'-euo',
'pipefail',
'-c',
'''
if [ -e "@INPUT@" ]; then
echo ' - [Upcoming release](release-notes/rl-next.md)'
fi
''',
],
input : [
rl_next_generated,
],
capture : true,
output : 'SUMMARY-rl-next.md',
)