Skip to content
Snippets Groups Projects
Commit 0a4b7226 authored by Erik Johnston's avatar Erik Johnston
Browse files

Don't change cwd in synctl

parent 0ec78b36
No related branches found
No related tags found
No related merge requests found
......@@ -32,9 +32,9 @@ def start(configfile):
print "Starting ...",
args = SYNAPSE
args.extend(["--daemonize", "-c", configfile])
cwd = os.path.dirname(os.path.abspath(__file__))
try:
subprocess.check_call(args, cwd=cwd)
subprocess.check_call(args)
print GREEN + "started" + NORMAL
except subprocess.CalledProcessError as e:
print (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment