From: hniksic Date: Tue, 23 Sep 2003 19:51:10 +0000 (-0700) Subject: [svn] Print the exact directory we're checking out tPrint the exact directory we... X-Git-Tag: v1.13~1661 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=2e3b4d2187021ba2b4e37f1eecb61f8ea9c644a1 [svn] Print the exact directory we're checking out tPrint the exact directory we're checking out too --- diff --git a/util/dist-wget b/util/dist-wget index b4fe96e5..25152c7c 100755 --- a/util/dist-wget +++ b/util/dist-wget @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/sh # Copyright (C) 2001 Free Software Foundation, Inc. @@ -26,6 +26,7 @@ # file, but you are not obligated to do so. If you do not wish to do # so, delete this exception statement from your version. +set -e CVSROOT=:pserver:cvs@sunsite.dk:/pack/anoncvs SUBDIR=wget.cvs.$$ @@ -53,7 +54,7 @@ do ;; -r) shift - EXPORT_TAG="-r $1" + EXPORT_TAG="-r '$1'" ;; --force-version) shift @@ -85,7 +86,7 @@ echo "Output from commands is in $O." echo "-----------" >$O # Checkout clean sources from the repository. -echo $e_n "Exporting ($EXPORT_TAG) out the CVS tree to $SUBDIR... $e_c" +echo $e_n "Exporting ($EXPORT_TAG) out the CVS tree to $TMPDIR/$SUBDIR... $e_c" cvs -d $CVSROOT export $EXPORT_TAG -d $SUBDIR wget 1>>$O 2>&1 echo "done."