mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-02-02 01:44:14 +00:00
detect system-wide twister-html
This commit is contained in:
parent
7fd6c31299
commit
ad6b05d97c
@ -70,12 +70,16 @@ def getBrowser():
|
||||
return webbrowser
|
||||
|
||||
def daemon():
|
||||
twisterdArgs = ["-daemon"]
|
||||
systemHtmlDir = '/usr/share/twister/html'
|
||||
if os.path.exists(systemHtmlDir):
|
||||
twisterdArgs += ['-htmldir='+systemHtmlDir]
|
||||
try:
|
||||
call(["twisterd", "-daemon"])
|
||||
call(["twisterd"] + twisterdArgs)
|
||||
except:
|
||||
try:
|
||||
twisterd = os.path.dirname(os.path.realpath(sys.argv[0])) + "/twisterd"
|
||||
call([twisterd, "-daemon"])
|
||||
call([twisterd] + twisterdArgs)
|
||||
except:
|
||||
print "running 'twisterd' failed. check if installed and PATH is correctly configured"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user