From ba4eed71bef941f62d36ef533465adb62a700f95 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sat, 9 Mar 2013 10:11:42 -0500 Subject: [PATCH] Added -R option to repo2html getopts (flag support was there, but option was not recognized) --- repo2html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo2html b/repo2html index a70989d..bf247df 100755 --- a/repo2html +++ b/repo2html @@ -47,7 +47,7 @@ cwarn() # configuration (note that this setup in conjunction with the below defaults # imply that they can be passed in as environment variables as an alternative to # options) -while getopts t:d:c:l:f: opt; do +while getopts t:d:c:l:f:R: opt; do case "$opt" in t) title="$OPTARG";; d) desc="$OPTARG";;