diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2004-03-17 11:23:04 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2004-03-17 11:23:04 +0000 |
commit | 5dba4dc13fe78d15b684c99b97d1cabbf7c8953e (patch) | |
tree | 46a0e8e2cd80b75dc76954dfcad7568391bd9344 /net | |
parent | 72d02ae8ea3bbd3b851086429ddb04810deb8be7 (diff) |
Ok, fix it once more, I swear I won't be doint sh scripts for a while
Pointy Hat To: me (I still have it, don't search)
Notes
Notes:
svn path=/head/; revision=104277
Diffstat (limited to 'net')
-rw-r--r-- | net/cvsup-mirror/Makefile | 2 | ||||
-rw-r--r-- | net/cvsup-mirror/files/update.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/cvsup-mirror/Makefile b/net/cvsup-mirror/Makefile index 8c06ab65e7d5..86c7acdd2371 100644 --- a/net/cvsup-mirror/Makefile +++ b/net/cvsup-mirror/Makefile @@ -7,7 +7,7 @@ PORTNAME= cvsup-mirror PORTVERSION= 1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net DISTFILES= diff --git a/net/cvsup-mirror/files/update.sh b/net/cvsup-mirror/files/update.sh index 97a224bfc9ed..025900a31306 100644 --- a/net/cvsup-mirror/files/update.sh +++ b/net/cvsup-mirror/files/update.sh @@ -25,7 +25,7 @@ umask 22 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} + test -f ${log}.$i${gz_ext} && mv -f ${log}.$i${gz_ext} ${log}.$(($i+1))${gz_ext} done test -f ${log} && mv -f ${log} ${log}.0 && [ ${use_gzip} != 0 ] && /usr/bin/gzip -9 ${log}.0 |