forked from MirrorHub/synapse
Don't change cwd in synctl
This commit is contained in:
parent
0ec78b360c
commit
0a4b7226fc
1 changed files with 2 additions and 2 deletions
|
@ -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 (
|
||||
|
|
Loading…
Reference in a new issue