diff options
Diffstat (limited to 'update_scripts.sh')
-rwxr-xr-x | update_scripts.sh | 6 |
1 files changed, 3 insertions, 3 deletions
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 |