diff --git a/commands/scripts/packman.sh b/commands/scripts/packman.sh index 00f84b265..07f716ce0 100644 --- a/commands/scripts/packman.sh +++ b/commands/scripts/packman.sh @@ -108,11 +108,13 @@ do cd $TMPDIR net*) echo "Retrieving binary from primary location into $TMPDIR .." srcurl="" if urlget $URL1/$file >$file - then packit $file && echo Installed ok. + then echo "Installing .." + packit $file && echo Installed ok. srcurl=$SRCURL1/$file else echo "Retrying from Beta binary location.." if urlget $URL2/$file >$file - then packit $file && echo Installed ok. + then echo "Installing .." + packit $file && echo Installed ok. srcurl=$SRCURL2/$file else echo "Retrieval failed." fi diff --git a/tools/release.sh b/tools/release.sh index 81c92522d..6a2ff3f63 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -251,7 +251,7 @@ then echo " * Indexing packages" for p in *.tar.bz2 do descr="../`echo $p | sed 's/.tar.bz2//'`/.descr" if [ -f "$descr" ] - then printf "%-32s %s\n" "$p" "`cat $descr`" + then echo "$p|`cat $descr`" fi done >List )