952ed53b8d
* 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>
13 lines
128 B
Bash
Executable File
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
|