diff options
author | hubertf <hubertf@pkgsrc.org> | 2005-03-30 22:26:37 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2005-03-30 22:26:37 +0000 |
commit | 1910d8dbb27defbc2edb30f7279309ba1a64b63f (patch) | |
tree | 303e72dc4fd3f668335ca19b8db339f77b71e4e8 /mk/bulk/upload | |
parent | 54d9e6930b2e4a22494288af082defd8a022f508 (diff) | |
download | pkgsrc-1910d8dbb27defbc2edb30f7279309ba1a64b63f.tar.gz |
Before calculating checksums, print a line that says what's happening.
With a slow NFS server (as mine), this can take a lot of time.
Diffstat (limited to 'mk/bulk/upload')
-rw-r--r-- | mk/bulk/upload | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/bulk/upload b/mk/bulk/upload index a5ed84ce3c2..88d3f8047a0 100644 --- a/mk/bulk/upload +++ b/mk/bulk/upload @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: upload,v 1.21 2005/01/24 15:00:48 jschauma Exp $ +# $NetBSD: upload,v 1.22 2005/03/30 22:26:37 hubertf Exp $ # # Upload non-restricted binary pkgs to ftp server @@ -112,6 +112,8 @@ cd $packages if [ "${MKSUMS}" = "yes" -o "${MKSUMS}" = "YES" ]; then + echo "Calculating checksum files..." + SUMFILES="BSDSUM CKSUM MD5 SHA1 SYSVSUM" rm -f ${SUMFILES} |