From 3761967a873021d8b498f9af6b96fedf1d1f45ad Mon Sep 17 00:00:00 2001 From: STetsing <41009393+STetsing@users.noreply.github.com> Date: Wed, 25 Sep 2024 10:25:34 +0200 Subject: [PATCH] minor --- apps/remixdesktop/src/lib/InferenceServerManager.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/remixdesktop/src/lib/InferenceServerManager.ts b/apps/remixdesktop/src/lib/InferenceServerManager.ts index fe5ba918eb..65ea23696e 100644 --- a/apps/remixdesktop/src/lib/InferenceServerManager.ts +++ b/apps/remixdesktop/src/lib/InferenceServerManager.ts @@ -265,11 +265,11 @@ export class InferenceManager implements ICompletions { // get platform name and return the path to the python script let exec_name = '' if (process.platform === 'win32') { - exec_name = 'InferenceServer_' + process.platform + '.exe' + exec_name = 'InferenceServer-' + process.platform + '.exe' } else if (process.platform === 'linux') { - exec_name = 'InferenceServer_' + process.platform + '_' + exec_suffix + exec_name = 'InferenceServer-' + process.platform + '_' + exec_suffix } else if (process.platform === 'darwin') { - exec_name = 'InferenceServer_' + 'mac' + exec_name = 'InferenceServer-' + 'mac' } else { throw new Error('Unsupported platform') }