Skip to content

Commit 3761967

Browse files
committed
minor
1 parent f8899fb commit 3761967

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/remixdesktop/src/lib/InferenceServerManager.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,11 +265,11 @@ export class InferenceManager implements ICompletions {
265265
// get platform name and return the path to the python script
266266
let exec_name = ''
267267
if (process.platform === 'win32') {
268-
exec_name = 'InferenceServer_' + process.platform + '.exe'
268+
exec_name = 'InferenceServer-' + process.platform + '.exe'
269269
} else if (process.platform === 'linux') {
270-
exec_name = 'InferenceServer_' + process.platform + '_' + exec_suffix
270+
exec_name = 'InferenceServer-' + process.platform + '_' + exec_suffix
271271
} else if (process.platform === 'darwin') {
272-
exec_name = 'InferenceServer_' + 'mac'
272+
exec_name = 'InferenceServer-' + 'mac'
273273
} else {
274274
throw new Error('Unsupported platform')
275275
}

0 commit comments

Comments
 (0)