]> arthur.barton.de Git - bup.git/blobdiff - lib/cmd/help-cmd.py
gitignore: add config/bin
[bup.git] / lib / cmd / help-cmd.py
index c078e825c1f972afe5833196c65e1eaed5b4df2d..7448ba6d071e1943ea54ef8111aa9d41bbac2354 100755 (executable)
@@ -9,15 +9,19 @@ for arg in "$@"; do
     arg_i=$((arg_i + 1))
 done
 # Here to end of preamble replaced during install
-bup_python="$(dirname "$0")/bup-python" || exit $?
+bup_python="$(dirname "$0")/../../config/bin/python" || exit $?
 exec "$bup_python" "$0"
 """
 # end of bup preamble
 
 from __future__ import absolute_import
-import sys, os, glob
+import os, glob, sys
+
+sys.path[:0] = [os.path.dirname(os.path.realpath(__file__)) + '/..']
+
 from bup import compat, options, path
 
+
 optspec = """
 bup help <command>
 """
@@ -30,7 +34,7 @@ if len(extra) == 0:
 elif len(extra) == 1:
     docname = (extra[0]=='bup' and 'bup' or ('bup-%s' % extra[0]))
     manpath = os.path.join(path.exedir(),
-                           'Documentation/' + docname + '.[1-9]')
+                           '../../Documentation/' + docname + '.[1-9]')
     g = glob.glob(manpath)
     try:
         if g: