-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
if self.background:
print("Starting new cloud server in background at {}:{}".format(self.host, self.port))
self._process = Popen(args, stdout=PIPE, stderr=PIPE, env=env)
else:
print("Starting new cloud server with prompt console at {}:{}".format(self.host, self.port))
args[0] = compas._os.select_python('python')
args = " ".join(args)
os.system('start ' + args)
in the else
part the call to os.system('start python ...')
fails because start
is not recognised as command...
Metadata
Metadata
Assignees
Labels
No labels