mirror of
https://github.com/NixOS/nix.git
synced 2025-10-20 13:04:17 +08:00

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
19 lines
315 B
Meson
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',
|
|
)
|