From 55b020739a559fb3267f5709f2f521084e2a4f2e Mon Sep 17 00:00:00 2001 From: maroy Date: Sun, 3 Jul 2005 10:56:27 +0000 Subject: [PATCH] using absolut paths for output directory --- livesupport/bin/dist.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/livesupport/bin/dist.sh b/livesupport/bin/dist.sh index a55befe8d..edbd28215 100755 --- a/livesupport/bin/dist.sh +++ b/livesupport/bin/dist.sh @@ -22,7 +22,7 @@ # # # Author : $Author: maroy $ -# Version : $Revision: 1.14 $ +# Version : $Revision: 1.15 $ # Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/bin/dist.sh,v $ #------------------------------------------------------------------------------- #------------------------------------------------------------------------------- @@ -105,13 +105,16 @@ if [ "x$directory" == "x" ]; then directory=`pwd`; fi +d=`cd $directory; pwd` +directory=$d + echo "Creating tarballs for LiveSupport."; echo ""; echo "Using the following parameters:"; echo ""; -echo " output directory: $directory"; -echo " package version number: $version"; +echo " output directory: $directory"; +echo " package version number: $version"; echo ""