From be72ef58aa5ca977b83b8e7ebe6ee1f401859f43 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 8 Dec 2003 21:57:22 +0000 Subject: [PATCH] Se corrige un errorcillo en el script para hacer el tar.gz para que no apareza un ../ delante de cada archivo. --- make_tar.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/make_tar.sh b/make_tar.sh index 1a17634..01a9f8d 100755 --- a/make_tar.sh +++ b/make_tar.sh @@ -4,9 +4,11 @@ INFO=`svn info | grep Revision | sed "s/Revision\: //g"` echo "PlaQui Package Creator" echo -echo Creando archivo ../plaqui-proyect-$INFO.tar.gz +echo Creando archivo ../plaqui-project-$INFO.tar.gz -tar -zcvf ../plaqui-proyect-$INFO.tar.gz --exclude .svn ../plaqui >> /dev/null 2>> /dev/null +cd .. +tar -zcvf plaqui-project-$INFO.tar.gz --exclude .svn plaqui >> /dev/null 2>> /dev/null +cd $OLDPWD echo Paquete creado con éxito. -- 2.43.0