1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 22:35:43 +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
fi
mkdir ../${tgtDir}
for x in `ls` ; do
if [ -f ${x} ]; then
case $x in
*-signed.zip)
;;
*.zip|*.tar)
y=`echo $x | sed -e "s,${src},{$tgtVer},"`
y=`echo $x | sed -e "s,${src},${tgtVer},"`
cp ${x} ../${tgtDir}/${y}
;;
index.php|buildNotes.php)