1
0
Fork 0
knot-resolver/scripts/get-date.sh
Daniel Baumann fbc604e215
Adding upstream version 5.7.5.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 13:56:17 +02:00

14 lines
372 B
Bash
Executable file

#!/bin/bash
# SPDX-License-Identifier: GPL-3.0-or-later
set -o nounset
cd "$(dirname $0)/.."
# Get date from NEWS if possible (regular release)
DATE=$(head -n1 < NEWS | sed 's/.*(\(.*\)).*/\1/' | grep -E '^[0-9]{4}-[0-9]{2}-[0-9]{2}$$')
if [[ $? -ne 0 ]]; then
# or use last modification time of NEWS (dev versions)
DATE=$(date -u -r NEWS +%F)
fi
echo -n $DATE