def setup_rtags_daemon(self):
print("Initializing RTags Daemon")
try:
subprocess.check_output(
self.cmake_cmd_info["rtags_shutdwn"],
stderr=subprocess.DEVNULL)
except subprocess.CalledProcessError as e:
print(e.output)
try:
subprocess.check_call(
self.cmake_cmd_info["rdm_cmd"], stderr=subprocess.DEVNULL)
except subprocess.CalledProcessError as e:
print(e.output)
raise
评论列表
文章目录