From b60623d005b21b2d7dba69676a89eb5a59e04c97 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sun, 26 May 2013 17:30:49 -0400 Subject: [PATCH] Formatting fix in repo2html script (indentation) --- repo2html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/repo2html b/repo2html index 7d22649..0551e85 100755 --- a/repo2html +++ b/repo2html @@ -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";;