~ubuntu-branches/ubuntu/hardy/git-core/hardy-updates

« back to all changes in this revision

Viewing changes to git-instaweb.sh

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-11-01 08:35:46 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20071101083546-w9tywil7o688gow7
Tags: 1:1.5.3.5-1
* new upstream point release.
  * git-config: handle --file option with relative pathname properly;
    git-config: print error message if the config file cannot be read;
    git-config: don't silently ignore options after --list (closes:
    #445208).

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
start_httpd () {
32
32
        httpd_only="`echo $httpd | cut -f1 -d' '`"
33
 
        if test "`expr index $httpd_only /`" -eq '1' || \
34
 
                                which $httpd_only >/dev/null
 
33
        if case "$httpd_only" in /*) : ;; *) which $httpd_only >/dev/null;; esac
35
34
        then
36
35
                $httpd $fqgitdir/gitweb/httpd.conf
37
36
        else