From a29553542c3ec61bdff94d40e2f2763f71863804 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Thu, 22 Aug 2013 20:32:33 -0700 Subject: [PATCH] install.sh: remove extraneous trailing ';' characters --- install.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/install.sh b/install.sh index 7f49241..c8d62ca 100755 --- a/install.sh +++ b/install.sh @@ -18,7 +18,7 @@ owngroup="" if [ -n "$cfg_httpspushurl" -a -z "$cfg_certsdir" ]; then echo "ERROR: \$httpspushurl is set but \$certsdir is not!" >&2 echo "ERROR: perhaps you have an incorrect Config.pm?" >&2 - exit 1; + exit 1 fi @@ -26,14 +26,14 @@ echo "*** Checking for compiled utilities..." if [ ! -f src/can_user_push ]; then echo "ERROR: src/can_user_push is not built! Did you _REALLY_ read INSTALL?" >&2 echo "ERROR: perhaps you forgot to run make?" >&2 - exit 1; + exit 1 fi echo "*** Checking for ezcert..." if [ ! -f ezcert.git/CACreateCert ]; then echo "ERROR: ezcert.git is not checked out! Did you _REALLY_ read INSTALL?" >&2 - exit 1; + exit 1 fi @@ -103,7 +103,7 @@ chmod 02775 "$cfg_chroot/etc" || echo "WARNING: Cannot chmod 02775 $cfg_chroot/e echo "*** Setting up gitweb from git.git..." if [ ! -f git.git/Makefile ]; then echo "ERROR: git.git is not checked out! Did you _REALLY_ read INSTALL?" >&2 - exit 1; + exit 1 fi mkdir -p "$cfg_webroot" "$cfg_cgiroot" (cd git.git && make --quiet gitweb/gitweb.cgi && cp gitweb/gitweb.cgi "$cfg_cgiroot" \ @@ -113,7 +113,7 @@ mkdir -p "$cfg_webroot" "$cfg_cgiroot" echo "*** Setting up git-browser from git-browser.git..." if [ ! -f git-browser.git/git-browser.cgi ]; then echo "ERROR: git-browser.git is not checked out! Did you _REALLY_ read INSTALL?" >&2 - exit 1; + exit 1 fi mkdir -p "$cfg_webroot"/git-browser "$cfg_cgiroot" (cd git-browser.git && cp git-browser.cgi "$cfg_cgiroot" \ @@ -132,7 +132,7 @@ EOT echo "*** Setting up darcs-fast-export from bzr-fastimport.git..." if [ ! -d bzr-fastimport.git/exporters/darcs/ ]; then echo "ERROR: bzr-fastimport.git is not checked out! Did you _REALLY_ read INSTALL?" >&2 - exit 1; + exit 1 fi mkdir -p "$cfg_basedir"/bin cp bzr-fastimport.git/exporters/darcs/darcs-fast-export "$cfg_basedir"/bin -- 2.11.4.GIT