Skip to content

Commit

Permalink
Updated PY_DEV_EXECUTABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiaMineJP committed Mar 21, 2024
1 parent d804564 commit 7e5482e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gui/src/util/chiaEnvironment.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const PY_WIN_DIST_FOLDER = '../../../app.asar.unpacked/daemon';
const PY_DIST_EXECUTABLE = 'chia';
const PY_DIST_EXEC_ARGS = Object.freeze(['start', 'daemon']);

const PY_DEV_EXECUTABLE = '../../../chia/cmds/main.py';
const PY_DEV_EXECUTABLE = `../../../venv/${process.platform === 'win32' ? 'Scripts/chia.exe' : 'bin/chia'}`;
const PY_DEV_EXEC_ARGS = Object.freeze([PY_DEV_EXECUTABLE, 'start', 'daemon']);

let pyProc = null;
Expand Down

0 comments on commit 7e5482e

Please sign in to comment.