1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00

Add rename_build.sh

This commit is contained in:
Martin Oberhuber 2009-09-26 21:07:50 +00:00
parent 65f2a889a2
commit 34271862be

View file

@ -32,13 +32,14 @@ if [ ! -f RSE-runtime-${srcVer}.zip ]; then
exit 1 exit 1
fi fi
mkdir ../${tgtDir}
for x in `ls` ; do for x in `ls` ; do
if [ -f ${x} ]; then if [ -f ${x} ]; then
case $x in case $x in
*-signed.zip) *-signed.zip)
;; ;;
*.zip|*.tar) *.zip|*.tar)
y=`echo $x | sed -e "s,${src},{$tgtVer},"` y=`echo $x | sed -e "s,${src},${tgtVer},"`
cp ${x} ../${tgtDir}/${y} cp ${x} ../${tgtDir}/${y}
;; ;;
index.php|buildNotes.php) index.php|buildNotes.php)