diff options
author | Jakob Stendahl <14180120+JakobST1n@users.noreply.github.com> | 2021-10-09 22:36:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-09 22:36:50 +0200 |
commit | 5cf342cd4400d4f555732f80bfdf3639965c4f88 (patch) | |
tree | 003148bbed905765066381c621cd211cc8f23f3a /src/NeoRuntimeManager/RuntimeProcess.js | |
parent | 061a45ad27f9f5473448ded8481e8dedd15c3a5a (diff) | |
download | Luxcena-Neo-5cf342cd4400d4f555732f80bfdf3639965c4f88.tar.gz Luxcena-Neo-5cf342cd4400d4f555732f80bfdf3639965c4f88.zip |
Update RuntimeProcess.js
Diffstat (limited to 'src/NeoRuntimeManager/RuntimeProcess.js')
-rw-r--r-- | src/NeoRuntimeManager/RuntimeProcess.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/NeoRuntimeManager/RuntimeProcess.js b/src/NeoRuntimeManager/RuntimeProcess.js index 562bb0e..24614fa 100644 --- a/src/NeoRuntimeManager/RuntimeProcess.js +++ b/src/NeoRuntimeManager/RuntimeProcess.js @@ -27,7 +27,7 @@ class RuntimeProcess { } this.isRunning = true; this.proc = spawn.spawn( - "python3", + `${__appdir}/NeoRuntime/Runtime/venv/bin/python`, [ "-u", // This makes us able to get real-time output `${__appdir}/NeoRuntime/Runtime/neo_runtime.py`, |