mirror of
https://github.com/NixOS/nix
synced 2025-06-25 14:51:16 +02:00
Co-Authored-By: Qyriad <qyriad@qyriad.me> Co-Authored-By: Robert Hensing <robert@roberthensing.nl> Co-Authored-By: eldritch horrors <pennae@lix.systems> Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com> Co-authored-by: Tom Bereknyei <tomberek@gmail.com>
17 lines
310 B
Meson
17 lines
310 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',
|
|
)
|