src/mercurialserver/paths.py
author Paul Crowley <paul@lshift.net>
Wed, 14 Oct 2009 18:03:35 +0100
changeset 139 b7e78f9705e6
parent 79 3a58a95fae2f
child 165 3606d60b07e5
permissions -rw-r--r--
There are only three decisions, honest

# Copyright 2008-2009 LShift Ltd

# Crude but it will do

import sys
import os.path

def setExePath():
    global _exePath
    _exePath = os.path.dirname(os.path.abspath(sys.argv[0]))

def getExePath():
    return _exePath

def getEtcPath():
    return "/etc/mercurial-server"