Browse Source

sde-download: removed -v from copying/linking files found in $altdir

karasz/new-early
Alejandro Mery 17 years ago
parent
commit
0fbf736c62
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      bin/sde-download

+ 3
- 3
bin/sde-download

@ -346,11 +346,11 @@ download_file() {
echo "Found `basename $bzfile` as $altfile."
case "$altcopy" in
copy)
cp -v "$altfile" "$bzfile" ;;
cp "$altfile" "$bzfile" ;;
move)
mv -v "$altfile" "$bzfile" ;;
mv "$altfile" "$bzfile" ;;
*) #link
cp -lv "$altfile" "$bzfile" ;;
cp -l "$altfile" "$bzfile" ;;
esac
gzfile="$bzfile"

Loading…
Cancel
Save