jsvn: allow specifying path to underlying Subversion executable in config file

This commit is contained in:
Josh Holtrop 2012-03-21 11:16:42 -04:00
parent a5e85240c3
commit b35c561875

3
jsvn
View File

@ -117,6 +117,7 @@ def get_config():
'use_pager': True, 'use_pager': True,
'use_color': True, 'use_color': True,
'aliases': {}, 'aliases': {},
'svn': '',
} }
pth = os.path.expanduser('~/.jsvn') pth = os.path.expanduser('~/.jsvn')
if os.path.exists(pth): if os.path.exists(pth):
@ -713,7 +714,7 @@ def main(argv):
global using_color global using_color
config = get_config() config = get_config()
realsvn = findInPath('svn') realsvn = config['svn'] if config['svn'] != '' else findInPath('svn')
out = sys.stdout out = sys.stdout
argv = apply_aliases(config, argv) argv = apply_aliases(config, argv)
using_pager = False using_pager = False