diff options
author | mat <mat@FreeBSD.org> | 2004-03-17 15:17:57 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2004-03-17 15:17:57 +0800 |
commit | e88d2f13f4b09217f5a995e8b26c768e66a25160 (patch) | |
tree | 826e3cb92aea315d121e4492493256e16b98b44a /net | |
parent | 13af954b790aa81992cd93550cdd24359c612639 (diff) | |
download | freebsd-ports-gnome-e88d2f13f4b09217f5a995e8b26c768e66a25160.tar.gz freebsd-ports-gnome-e88d2f13f4b09217f5a995e8b26c768e66a25160.tar.zst freebsd-ports-gnome-e88d2f13f4b09217f5a995e8b26c768e66a25160.zip |
Corrected silly sh error
PORTREVISION bumped
Pointy Hat To: me
Diffstat (limited to 'net')
-rw-r--r-- | net/cvsup-mirror/Makefile | 1 | ||||
-rw-r--r-- | net/cvsup-mirror/files/update.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/net/cvsup-mirror/Makefile b/net/cvsup-mirror/Makefile index d42a21fb480f..8c06ab65e7d5 100644 --- a/net/cvsup-mirror/Makefile +++ b/net/cvsup-mirror/Makefile @@ -7,6 +7,7 @@ PORTNAME= cvsup-mirror PORTVERSION= 1.3 +PORTREVISION= 1 CATEGORIES= net DISTFILES= diff --git a/net/cvsup-mirror/files/update.sh b/net/cvsup-mirror/files/update.sh index c8d6409cfd47..97a224bfc9ed 100644 --- a/net/cvsup-mirror/files/update.sh +++ b/net/cvsup-mirror/files/update.sh @@ -23,7 +23,7 @@ fi umask 22 -for i in $(/usr/bin/jot ${num_logs} $((num_logs-1)) 0) +for i in $(/usr/bin/jot ${num_logs} $((${num_logs}-1)) 0) do test -f ${log}.$i${gz_ext} && mv -f ${log}.$i${gz_ext} ${log}.$((i+1))${gz_ext} done |