Skip to content

Commit 37fc485

Browse files
committed
[css2] Path fixes
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%401742
1 parent 0fbc4c2 commit 37fc485

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

css2/bin/issues-db

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616

1717
USAGE="issues-db <issues-db> <html-src>"
1818

19-
if [ $# -ne 2 ]
19+
if [ $# -lt 2 ]
2020
then
2121
echo $USAGE; exit 1;
2222
fi
2323

24-
ISSUES=`dirname $0`/../$1; shift
25-
HTML=`dirname $0`/../$2; shift
24+
ISSUES=$1; shift
25+
HTML=build/$2; shift
2626
#DATEFRM="+%d %b %Y"
2727
DATEFRM="+%Y-%m-%d"
2828
TMP=${TMPDIR:-/tmp}/issue.$$

0 commit comments

Comments
 (0)