kernel/update_scripts.sh
Justin M. Forbes 952ed53b8d kernel-5.10.0-98
* Mon Dec 14 2020 Justin M. Forbes <jforbes@fedoraproject.org> [5.10.0-98]
- Add missing '$' sign to (GIT) in redhat/Makefile (Augusto Caringi)
Resolves: rhbz#

Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
2020-12-14 09:02:23 -06:00

13 lines
128 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 $NEW
done