removed verbose flags

This commit is contained in:
Zach Tibbitts 2007-02-07 00:19:14 +00:00
parent d263a711e6
commit c1fb01a2cc
1 changed files with 6 additions and 6 deletions

View File

@ -11,25 +11,25 @@
if [ -d ./working/ ] if [ -d ./working/ ]
then then
echo " Removing old files: " echo " Removing old files: "
rm -rvf working rm -rf working
fi fi
echo " Creating new working directory: " echo " Creating new working directory: "
mkdir -v working/ working/glade/ working/pixmaps/ mkdir working/ working/glade/ working/pixmaps/
echo " Updating to latest SVN version: " echo " Updating to latest SVN version: "
svn update svn update
echo " Copy source to working directory: " echo " Copy source to working directory: "
for file in $(echo src/*) for file in $(echo src/*)
do do
cp -v $file working/ cp $file working/
done done
echo " Copying data to working directory: " echo " Copying data to working directory: "
for file in $(echo glade/*) for file in $(echo glade/*)
do do
cp -v $file working/glade/ cp $file working/glade/
done done
for file in $(echo pixmaps/*) for file in $(echo pixmaps/*)
do do
cp -v $file working/pixmaps/ cp $file working/pixmaps/
done done
echo " Building Deluge-SVN: " echo " Building Deluge-SVN: "
python setup.py build python setup.py build
@ -38,7 +38,7 @@ for file in $(echo build/*)
do do
if [ -e $file/deluge/deluge_core.so ] if [ -e $file/deluge/deluge_core.so ]
then then
cp -v $file/deluge/deluge_core.so working/ cp $file/deluge/deluge_core.so working/
fi fi
done done
echo " Launching Deluge-SVN: " echo " Launching Deluge-SVN: "