kernel/update_scripts.sh
Jeremy Cline 8aa3f86912 kernel-5.7.0-0.rc1.20200416git9786cab67457.1
* Thu Apr 16 2020 Jeremy Cline <jcline@redhat.com> [5.7.0-0.rc1.20200416git9786cab67457.1]
- 9786cab67457 rebase
- Copy distro files rather than moving them (Jeremy Cline)
- Place the buildid before the dist in the release (Jeremy Cline)
- Drop DIST from release commits and tags (Jeremy Cline)
- Sync up with Fedora arm configuration prior to merging (Jeremy Cline)
- Disable CONFIG_PROTECTED_VIRTUALIZATION_GUEST for zfcpdump (Jeremy Cline)
Resolves: rhbz#

Signed-off-by: Jeremy Cline <jcline@redhat.com>
2020-04-16 16:30:04 -04:00

13 lines
143 B
Bash
Executable File

#!/bin/sh
if [ -z $1 ]; then
exit 1
fi
TARGET=$1
for i in $RPM_SOURCE_DIR/*.$TARGET; do
NEW=`echo $i | sed s/.$TARGET//`
cp $i $NEW
done