From 0310b312a7e5dffcdf24ae835ed732f7a6a9c471 Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Tue, 14 Apr 2020 17:53:23 -0400 Subject: kernel-5.7.0-0.rc1.20200414git8632e9b5645b.1 This is an automated commit generated from the kernel-5.7.0-0.rc1.20200414git8632e9b5645b.1 tag in https://gitlab.com/cki-project/kernel-ark.git --- update_scripts.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'update_scripts.sh') diff --git a/update_scripts.sh b/update_scripts.sh index 7cacfb6c1..77d795287 100755 --- a/update_scripts.sh +++ b/update_scripts.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh if [ -z $1 ]; then exit 1 @@ -7,6 +7,6 @@ fi TARGET=$1 for i in $RPM_SOURCE_DIR/*.$TARGET; do - NEW=$(echo $i | sed -e "s/\.$TARGET//") - cp $i $NEW + NEW=`echo $i | sed s/.$TARGET//` + mv $i $NEW done -- cgit