kernel/update_scripts.sh
Justin M. Forbes 2f781ad87e
kernel-6.5.4-200
* Tue Sep 19 2023 Justin M. Forbes <jforbes@fedoraproject.org> [6.5.4-0]
- Add F38 and F37 as release targets (Justin M. Forbes)
- Add NFS bug fix for 6.5.4 (Justin M. Forbes)
- selinux: fix handling of empty opts in selinux_fs_context_submount() (Ondrej Mosnacek)
- Turn off appletalk for fedora (Justin M. Forbes)
- Linux v6.5.4
Resolves:

Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
2023-09-19 06:57:10 -05:00

13 lines
156 B
Bash
Executable File

#!/bin/sh
if [ -z "$1" ]; then
exit 1
fi
TARGET="$1"
for i in "$RPM_SOURCE_DIR"/*."$TARGET"; do
NEW=${i%."$TARGET"}
cp "$i" "$(basename "$NEW")"
done