* Wed Apr 22 2020 Justin M. Forbes <jforbes@fedoraproject.org> [5.7.0-0.rc2.20200422git18bf34080c4c.1] - 18bf34080c4c rebase - Provide defaults in ark-rebase-patches.sh (Jeremy Cline) - Default ark-rebase-patches.sh to not report issues (Jeremy Cline) Resolves: rhbz# Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
13 lines
143 B
Bash
Executable File
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//`
|
|
mv $i $NEW
|
|
done
|