From 1be3aab143cb9c512248a3301efbe85eda09a49a Mon Sep 17 00:00:00 2001 From: Joost Kremers Date: Sat, 20 Oct 2007 17:18:10 +0200 Subject: [PATCH] Typos in make-ebib-release.sh fixed. There were three occurrences of "if ; do" which were corrected to "if ; then". Furthermore, the script tried to copy ebib-manual.ccs, whereas the file is called ebib-manual.css. --- make-ebib-release.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/make-ebib-release.sh b/make-ebib-release.sh index 4a19541..a3bf218 100755 --- a/make-ebib-release.sh +++ b/make-ebib-release.sh @@ -44,19 +44,19 @@ echo # ) (cd $BASE/manual - if [ -f html/ebib-manual.html ] ; do - cp html/ebib-manual.html ebib-manual.ccs ../"$full_name"/doc/html/ + if [ -f html/ebib-manual.html ] ; then + cp html/ebib-manual.html ebib-manual.css ../"$full_name"/doc/html/ echo "Copied html manual to $full_name/doc/html/" else echo Warning: ebib-manual.html not found! fi - if [ -f pdf/ebib-manual.pdf ] ; do + if [ -f pdf/ebib-manual.pdf ] ; then cp html/ebib-manual.pdf ../"$full_name"/doc/ echo "Copied pdf manual to $full_name/doc/" else echo Warning: ebib-manual.pdf not found! fi - if [ -f html/ebib-manual.info ] ; do + if [ -f html/ebib-manual.info ] ; then cp html/ebib-manual.info ../"$full_name"/info echo "Copied info manual to $full_name/info" else -- 2.11.4.GIT