1
0
Fork 0

Formatting fix in repo2html script (indentation)

tpl
Mike Gerwitz 2013-05-26 17:30:49 -04:00
parent 9a8803f707
commit b60623d005
1 changed files with 7 additions and 7 deletions

View File

@ -100,13 +100,13 @@ while getopts t:d:c:e:l:f:o:C:ER:T: opt; do
l) license="$OPTARG";;
f) msgfmt="$OPTARG";;
o)
# recognize both absolute and relative paths
if [ "${OPTARG:0:1}" == / ]; then
path_out="$OPTARG"
else
path_out="$path_out/$OPTARG"
fi
;;
# recognize both absolute and relative paths
if [ "${OPTARG:0:1}" == / ]; then
path_out="$OPTARG"
else
path_out="$path_out/$OPTARG"
fi
;;
C) html_external_css="$OPTARG";;
E) html_ext=;;
R) rss_count="$OPTARG";;