Move backend into bin folder

This commit is contained in:
NGnius (Graham) 2022-07-18 17:31:08 -04:00
parent 5d66c5e661
commit 8acd594262
2 changed files with 1 additions and 1 deletions

View file

@ -25,6 +25,6 @@ class Plugin:
# Asyncio-compatible long-running code, executed in a task when the plugin is loaded
async def _main(self):
# startup
self.backend_proc = subprocess.Popen([PARENT_DIR + "/backend"])
self.backend_proc = subprocess.Popen([PARENT_DIR + "/bin/backend"])
while True:
asyncio.sleep(1)